diff --git a/README.md b/README.md index 75248e4..b697c5f 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,118 @@ # project-beverage-vending-machine -A fully automated beverage dispenser, controllable via an Android or Iphone app \ No newline at end of file +A fully automated beverage dispenser, controllable via an Android or Iphone app + +It has been designed to hold up to 9 bottles of ingredients for making the cocktails, dispensing the correct amount from each to mix your cocktail of choice. + +Cocktails can be chosen using the mobile app (available for iOS and Android) that connects to the machine via Bluetooth. In the app you can also enable/disable ingredients, change the position of each ingredient, edit the recipes and change the amount of each ingredient used in the cocktails and so on. + + +## Getting started + +### Requirements +* Node.js +* Npm (Node comes with npm) +* Android SDK tools [ [installing Cordova requirements](https://cordova.apache.org/docs/en/latest/guide/platforms/android/#installing-the-requirements) ] or Xcode depending on which platform you want to use +* Arduino IDE + +### Client +* Clone this repository +* From the client app directory, run `npm install` +* Install Cordova globally `npm install -g cordova` +* Install Ionic CLI globally `npm install -g ionic@2.2.3` +* Run `ionic serve` in a terminal from the `client` directory +* At this point, Ionic CLI should open the app in your browser + +### The beverage dispenser +* Clone this repository +* Start the Arduino IDE and open the `_Getraenkeautomat.ino` +* In Arduino IDE, select your board from the `Tools -> Board` menu (right now we're not supporting other boards than Arduino Mega) +* Select the serial port to which Arduino is connected from the `Tools -> Serial Port` menu +* Click the Verify button to see that the code is ok +* Click the Upload button +* If all goes well, that's it + +## Required Hardware parts +* NEMA 17 stepper motor +* Pololu A4988 stepper driver +* Hitec HS-7955TG servo motor +* Pololu Micro Maestro 6-Channel servo controller +* Bluetooth module HC-05 +* GT2 6mm wide timing belt +* GT2 timing pulley 20 teeth 5mm bore +* Timing belt bearing +* 2 x Chrome plated round rail 1200mm x 12mm +* 4 x SK12 12mm bore linear rail shaft support +* 4 x SC12UU aluminium pillow block housing +* 9 x 40ml Beaumont Metrix SL spirit measure +* 3 x Wall 3 bottle rack +* Endstop microswitch +* Arduino Mega 2560 +* Cable carrier +* DC-DC converter (12V to 5V) +* AC power supply 12V (6.67A) + +### List of 3D parts used in this project +* [NEMA 17 mount](https://www.thingiverse.com/thing:5391) +* [Adjustable belt holder](https://www.thingiverse.com/thing:745934) +* [Idler pulley mount](https://www.thingiverse.com/thing:1225670) + +## Wiring diagram + +Wiring diagram + +## Communication +The mobile app and the machine communicates over the Serial port using the Bluetooth module HC-05 (with a few small changes, you can use other methods for communication like USB or WiFi too). See all available communication commands below in the "Available commands" section. + +## Available commands + +Multiple commands can be sent in a single message by separating them with a comma ",". All the commands will be executed one after another in the order in which they're written. The messages must be ended with a newline "\n" character to be run. + +**Example** +``` +X-4995,F2 H2500 W3000,X-1990,F6 H2300 W2300,H +``` + +### X: Move X axis + +**Usage** +`Xnnn` + +**Parameters** +Xnnn - The position to move to on the X axis + +**Example** +``` +X-4995 ; Move to -4995 position on the X axis +``` + +### H: Home X axis +**Usage** +`H` + +**Parameters** +*This command can be used without any parameters* + +**Example** +``` +H ; Home the X axis +``` + +### F: Pour +**Usage** +`Fnnn Hnnn Wnnn` + +**Parameters** +Fnnn - Times to pour +Hnnn - Time duration (in ms) to hold dispenser in open position +Wnnn - Time duration (in ms) to wait till next pour + +**Example** +``` +F2 H2500 W3000 ; Pour two times, hold dispenser open for 2500ms and wait for 3000ms between each pour +``` + +## Additional information +* Dispensers used in this project won't work with liqueur and other thick drinks. You might also have problems with sugary drinks as they stick inner dispenser parts together if you leave the liquid inside the dispenser for hours +* You can use Coca-Cola and other carbonated drinks with these dispensers, but don't forget to make a hole at the bottom of the bottle before mounting the dispenser to the bottle in order to let air get out, otherwise you will have a big fountain. Use empty bottles and fill them later through the holes after mounting the dispensers +* Wash dispensers very well after every use, otherwise the inner dispenser parts will stick together. I would also recommend you to wash them before every use diff --git a/_drawings/Boden.PDF b/_drawings/Boden.PDF new file mode 100644 index 0000000..b0dabd6 Binary files /dev/null and b/_drawings/Boden.PDF differ diff --git a/_drawings/Boden.SLDDRW b/_drawings/Boden.SLDDRW new file mode 100644 index 0000000..d2d74aa Binary files /dev/null and b/_drawings/Boden.SLDDRW differ diff --git a/_drawings/Boden.SLDPRT b/_drawings/Boden.SLDPRT new file mode 100644 index 0000000..2c1464a Binary files /dev/null and b/_drawings/Boden.SLDPRT differ diff --git a/_drawings/Rippe.PDF b/_drawings/Rippe.PDF new file mode 100644 index 0000000..c07b8ff Binary files /dev/null and b/_drawings/Rippe.PDF differ diff --git a/_drawings/Rippe.SLDDRW b/_drawings/Rippe.SLDDRW new file mode 100644 index 0000000..0417c8f Binary files /dev/null and b/_drawings/Rippe.SLDDRW differ diff --git a/_drawings/Rippe.SLDPRT b/_drawings/Rippe.SLDPRT new file mode 100644 index 0000000..488d4f0 Binary files /dev/null and b/_drawings/Rippe.SLDPRT differ diff --git a/_drawings/Rückwand.PDF b/_drawings/Rückwand.PDF new file mode 100644 index 0000000..6c90439 Binary files /dev/null and b/_drawings/Rückwand.PDF differ diff --git a/_drawings/Rückwand.SLDDRW b/_drawings/Rückwand.SLDDRW new file mode 100644 index 0000000..1035c5b Binary files /dev/null and b/_drawings/Rückwand.SLDDRW differ diff --git a/_drawings/Rückwand.SLDPRT b/_drawings/Rückwand.SLDPRT new file mode 100644 index 0000000..e7d295a Binary files /dev/null and b/_drawings/Rückwand.SLDPRT differ diff --git a/_drawings/Säule.PDF b/_drawings/Säule.PDF new file mode 100644 index 0000000..d959534 Binary files /dev/null and b/_drawings/Säule.PDF differ diff --git a/_drawings/Säule.SLDDRW b/_drawings/Säule.SLDDRW new file mode 100644 index 0000000..c717573 Binary files /dev/null and b/_drawings/Säule.SLDDRW differ diff --git a/_drawings/Säule.SLDPRT b/_drawings/Säule.SLDPRT new file mode 100644 index 0000000..9f33e15 Binary files /dev/null and b/_drawings/Säule.SLDPRT differ diff --git a/_drawings/_Getränkeautomat_BG.PDF b/_drawings/_Getränkeautomat_BG.PDF new file mode 100644 index 0000000..572bba8 Binary files /dev/null and b/_drawings/_Getränkeautomat_BG.PDF differ diff --git a/_drawings/_Getränkeautomat_BG.SLDASM b/_drawings/_Getränkeautomat_BG.SLDASM new file mode 100644 index 0000000..2664a6b Binary files /dev/null and b/_drawings/_Getränkeautomat_BG.SLDASM differ diff --git a/_drawings/_Getränkeautomat_BG.SLDDRW b/_drawings/_Getränkeautomat_BG.SLDDRW new file mode 100644 index 0000000..32a31ea Binary files /dev/null and b/_drawings/_Getränkeautomat_BG.SLDDRW differ diff --git a/_drawings/_Getränkeautomat_BG.STEP b/_drawings/_Getränkeautomat_BG.STEP new file mode 100644 index 0000000..48fdebe --- /dev/null +++ b/_drawings/_Getränkeautomat_BG.STEP @@ -0,0 +1,2730 @@ +ISO-10303-21; +HEADER; +FILE_DESCRIPTION (( 'STEP AP203' ), + '1' ); +FILE_NAME ('_Getrnkeautomat_BG.STEP', + '2017-07-07T21:47:04', + ( '' ), + ( '' ), + 'SwSTEP 2.0', + 'SolidWorks 2016', + '' ); +FILE_SCHEMA (( 'CONFIG_CONTROL_DESIGN' )); +ENDSEC; + +DATA; +#1 = EDGE_LOOP ( 'NONE', ( #2379, #1528 ) ) ; +#2 = AXIS2_PLACEMENT_3D ( 'NONE', #362, #560, #2047 ) ; +#3 = ORIENTED_EDGE ( 'NONE', *, *, #336, .F. ) ; +#4 = EDGE_LOOP ( 'NONE', ( #379, #246 ) ) ; +#5 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#6 = CC_DESIGN_APPROVAL ( #2315, ( #2445 ) ) ; +#7 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 5.750000000000005300, 349.5000000000000600 ) ) ; +#8 = ORGANIZATION ( 'NAUO-ORG8', 'UNSPECIFIED', 'UNSPECIFIED' ) ; +#9 = DATE_TIME_ROLE ( 'classification_date' ) ; +#10 = CC_DESIGN_DATE_AND_TIME_ASSIGNMENT ( #714, #2410, ( #989 ) ) ; +#11 = ITEM_DEFINED_TRANSFORMATION ( 'NONE', 'NONE', #2553, #750 ) ; +#12 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#13 = PLANE ( 'NONE', #746 ) ; +#14 = CARTESIAN_POINT ( 'NONE', ( -373.0000000000006800, -5.551115123125782700E-014, 0.0000000000000000000 ) ) ; +#15 = CLOSED_SHELL ( 'NONE', ( #128, #1754, #1312, #116, #499, #1638, #1972, #1742, #1722, #332, #2567, #2614, #87, #909, #511, #306, #282, #2190 ) ) ; +#16 = DATE_AND_TIME ( #626, #2387 ) ; +#17 = LINE ( 'NONE', #683, #2453 ) ; +#18 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#19 = APPROVAL_ROLE ( '' ) ; +#20 = LINE ( 'NONE', #589, #956 ) ; +#21 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#22 = FACE_OUTER_BOUND ( 'NONE', #1361, .T. ) ; +#23 = LINE ( 'NONE', #1946, #2323 ) ; +#24 = ORIENTED_EDGE ( 'NONE', *, *, #1860, .F. ) ; +#25 = EDGE_CURVE ( 'NONE', #1063, #1548, #897, .T. ) ; +#26 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#27 = APPROVAL_STATUS ( 'not_yet_approved' ) ; +#28 = VERTEX_POINT ( 'NONE', #1141 ) ; +#29 = ORIENTED_EDGE ( 'NONE', *, *, #2689, .T. ) ; +#30 = ORIENTED_EDGE ( 'NONE', *, *, #2512, .F. ) ; +#31 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#32 = EDGE_LOOP ( 'NONE', ( #289, #444, #1365, #643 ) ) ; +#33 = ORIENTED_EDGE ( 'NONE', *, *, #1785, .T. ) ; +#34 = APPROVAL_STATUS ( 'not_yet_approved' ) ; +#35 = ORIENTED_EDGE ( 'NONE', *, *, #273, .T. ) ; +#36 = DIRECTION ( 'NONE', ( -0.8864854132692052700, -0.4627565364864407200, 0.0000000000000000000 ) ) ; +#37 = ORGANIZATION ( 'NAUO-ORG5', 'UNSPECIFIED', 'UNSPECIFIED' ) ; +#38 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 5.750000000000005300, 437.0000000000000000 ) ) ; +#39 = DATE_AND_TIME ( #1677, #296 ) ; +#40 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#41 = CC_DESIGN_DATE_AND_TIME_ASSIGNMENT ( #757, #2237, ( #1427 ) ) ; +#42 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#43 = APPROVAL_ROLE ( '' ) ; +#44 = EDGE_LOOP ( 'NONE', ( #1647, #1787, #741, #2534 ) ) ; +#45 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#46 = FACE_OUTER_BOUND ( 'NONE', #371, .T. ) ; +#47 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#48 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#49 = FACE_BOUND ( 'NONE', #2503, .T. ) ; +#50 = PRODUCT_DEFINITION_SHAPE ( 'NONE', 'NONE', #2713 ) ; +#51 = AXIS2_PLACEMENT_3D ( 'NONE', #1494, #2514, #1248 ) ; +#52 = DATE_TIME_ROLE ( 'classification_date' ) ; +#53 = APPROVAL_PERSON_ORGANIZATION ( #2590, #545, #2243 ) ; +#54 = EDGE_LOOP ( 'NONE', ( #96, #2468 ) ) ; +#55 = CARTESIAN_POINT ( 'NONE', ( -1.110223024625156500E-013, 477.0000000000000000, 0.0000000000000000000 ) ) ; +#56 = CARTESIAN_POINT ( 'NONE', ( -744.0000000000006800, -87.50000000000002800, -0.001000000000001000100 ) ) ; +#57 = LINE ( 'NONE', #1252, #662 ) ; +#58 = ORIENTED_EDGE ( 'NONE', *, *, #865, .F. ) ; +#59 = CC_DESIGN_SECURITY_CLASSIFICATION ( #2428, ( #2711 ) ) ; +#60 = CARTESIAN_POINT ( 'NONE', ( 762.4999999999993200, 127.4999999999999400, 18.00000000000000400 ) ) ; +#61 = SECURITY_CLASSIFICATION_LEVEL ( 'unclassified' ) ; +#62 = LINE ( 'NONE', #497, #441 ) ; +#63 = DIRECTION ( 'NONE', ( -0.4627565364864406100, 0.8864854132692051600, 0.0000000000000000000 ) ) ; +#64 = ORIENTED_EDGE ( 'NONE', *, *, #1260, .T. ) ; +#65 = ORIENTED_EDGE ( 'NONE', *, *, #2042, .T. ) ; +#66 = EDGE_LOOP ( 'NONE', ( #275, #1535, #1189, #935 ) ) ; +#67 = EDGE_CURVE ( 'NONE', #864, #2618, #2532, .T. ) ; +#68 = CARTESIAN_POINT ( 'NONE', ( -746.0000000000006800, -87.50000000000002800, 18.00000000000000400 ) ) ; +#69 = APPROVAL_ROLE ( '' ) ; +#70 = AXIS2_PLACEMENT_3D ( 'NONE', #301, #1974, #1744 ) ; +#71 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#72 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#73 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #2179 ) ; +#74 = PRODUCT_DEFINITION ( 'UNKNOWN', '', #199, #568 ) ; +#75 = CARTESIAN_POINT ( 'NONE', ( -746.0000000000006800, -5.551115123125782700E-014, -0.001000000000001000100 ) ) ; +#76 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #595 ) ; +#77 = EDGE_CURVE ( 'NONE', #583, #1016, #474, .T. ) ; +#78 = AXIS2_PLACEMENT_3D ( 'NONE', #509, #97, #2373 ) ; +#79 = VERTEX_POINT ( 'NONE', #1952 ) ; +#80 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#81 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#82 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #2184, #1862, ( #253 ) ) ; +#83 = APPROVAL_ROLE ( '' ) ; +#84 = CIRCLE ( 'NONE', #711, 3.500000000000003100 ) ; +#85 = CARTESIAN_POINT ( 'NONE', ( -373.0000000000006800, -5.551115123125782700E-014, 0.0000000000000000000 ) ) ; +#86 = CARTESIAN_POINT ( 'NONE', ( -746.0000000000006800, -5.551115123125782700E-014, 18.00000000000000400 ) ) ; +#87 = ADVANCED_FACE ( 'NONE', ( #1698 ), #2061, .F. ) ; +#88 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#89 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#90 = LINE ( 'NONE', #2142, #1475 ) ; +#91 = AXIS2_PLACEMENT_3D ( 'NONE', #334, #151, #561 ) ; +#92 = ORIENTED_EDGE ( 'NONE', *, *, #2238, .T. ) ; +#93 = CC_DESIGN_APPROVAL ( #2658, ( #1871 ) ) ; +#94 = LINE ( 'NONE', #1547, #1973 ) ; +#95 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#96 = ORIENTED_EDGE ( 'NONE', *, *, #297, .F. ) ; +#97 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#98 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#99 = ORIENTED_EDGE ( 'NONE', *, *, #67, .T. ) ; +#100 = VERTEX_POINT ( 'NONE', #1769 ) ; +#101 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#102 = ORIENTED_EDGE ( 'NONE', *, *, #1229, .F. ) ; +#103 = ADVANCED_FACE ( 'NONE', ( #1604 ), #249, .T. ) ; +#104 = EDGE_LOOP ( 'NONE', ( #1637, #480 ) ) ; +#105 = PLANE ( 'NONE', #70 ) ; +#106 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#107 = EDGE_CURVE ( 'NONE', #248, #1117, #343, .T. ) ; +#108 = MANIFOLD_SOLID_BREP ( 'Aufsatz-Linear austragen1', #372 ) ; +#109 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#110 = PLANE ( 'NONE', #2187 ) ; +#111 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#112 = AXIS2_PLACEMENT_3D ( 'NONE', #2155, #373, #2185 ) ; +#113 = CARTESIAN_POINT ( 'NONE', ( 16.49999999999995700, 16.50000000000001400, 0.0000000000000000000 ) ) ; +#114 = ORIENTED_EDGE ( 'NONE', *, *, #2543, .F. ) ; +#115 = DATE_AND_TIME ( #194, #2248 ) ; +#116 = ADVANCED_FACE ( 'NONE', ( #2639 ), #702, .F. ) ; +#117 = FACE_BOUND ( 'NONE', #2324, .T. ) ; +#118 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#119 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#120 = CIRCLE ( 'NONE', #446, 3.500000000000003100 ) ; +#121 = DIRECTION ( 'NONE', ( 0.0000000000000000000, -1.000000000000000000, 0.0000000000000000000 ) ) ; +#122 = CARTESIAN_POINT ( 'NONE', ( -16.49999999999995700, 16.50000000000001400, 0.0000000000000000000 ) ) ; +#123 = EDGE_CURVE ( 'NONE', #900, #797, #1187, .T. ) ; +#124 = ORIENTED_EDGE ( 'NONE', *, *, #1849, .T. ) ; +#125 = LINE ( 'NONE', #276, #2122 ) ; +#126 = VECTOR ( 'NONE', #435, 1000.000000000000000 ) ; +#127 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#128 = ADVANCED_FACE ( 'NONE', ( #407 ), #1057, .F. ) ; +#129 = CIRCLE ( 'NONE', #1741, 2.000000000000001800 ) ; +#130 = CARTESIAN_POINT ( 'NONE', ( 372.9999999999993200, -87.50000000000002800, 0.0000000000000000000 ) ) ; +#131 = ORIENTED_EDGE ( 'NONE', *, *, #2226, .T. ) ; +#132 = ORIENTED_EDGE ( 'NONE', *, *, #906, .F. ) ; +#133 = CARTESIAN_POINT ( 'NONE', ( -744.0000000000006800, 87.49999999999991500, -0.001000000000001000100 ) ) ; +#134 = VERTEX_POINT ( 'NONE', #223 ) ; +#135 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#136 =( LENGTH_UNIT ( ) NAMED_UNIT ( * ) SI_UNIT ( .MILLI., .METRE. ) ); +#137 = CIRCLE ( 'NONE', #513, 2.000000000000001800 ) ; +#138 = DATE_AND_TIME ( #647, #1334 ) ; +#139 = AXIS2_PLACEMENT_3D ( 'NONE', #1981, #1352, #118 ) ; +#140 = CC_DESIGN_SECURITY_CLASSIFICATION ( #486, ( #199 ) ) ; +#141 = ORIENTED_EDGE ( 'NONE', *, *, #1385, .T. ) ; +#142 = AXIS2_PLACEMENT_3D ( 'NONE', #2113, #2121, #880 ) ; +#143 = EDGE_CURVE ( 'NONE', #1954, #2525, #2094, .T. ) ; +#144 = CARTESIAN_POINT ( 'NONE', ( -375.0000000000006800, -5.526622187142835700E-014, 0.0000000000000000000 ) ) ; +#145 = PLANE ( 'NONE', #2019 ) ; +#146 = LINE ( 'NONE', #2613, #628 ) ; +#147 = ITEM_DEFINED_TRANSFORMATION ( 'NONE', 'NONE', #453, #750 ) ; +#148 = FACE_OUTER_BOUND ( 'NONE', #1318, .T. ) ; +#149 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#150 = FACE_OUTER_BOUND ( 'NONE', #349, .T. ) ; +#151 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#152 = EDGE_LOOP ( 'NONE', ( #434, #845, #2473, #1225 ) ) ; +#153 =( NAMED_UNIT ( * ) PLANE_ANGLE_UNIT ( ) SI_UNIT ( $, .RADIAN. ) ); +#154 = CYLINDRICAL_SURFACE ( 'NONE', #292, 2.000000000000001800 ) ; +#155 = FACE_OUTER_BOUND ( 'NONE', #2037, .T. ) ; +#156 = VECTOR ( 'NONE', #1790, 1000.000000000000000 ) ; +#157 = ORIENTED_EDGE ( 'NONE', *, *, #2587, .F. ) ; +#158 = CC_DESIGN_APPROVAL ( #606, ( #2358 ) ) ; +#159 = DIRECTION ( 'NONE', ( 2.102695122396129700E-016, -1.000000000000000000, 0.0000000000000000000 ) ) ; +#160 = AXIS2_PLACEMENT_3D ( 'NONE', #671, #1071, #872 ) ; +#161 = ORIENTED_EDGE ( 'NONE', *, *, #540, .T. ) ; +#162 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#163 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#164 = EDGE_CURVE ( 'NONE', #447, #1422, #2671, .T. ) ; +#165 = ORIENTED_EDGE ( 'NONE', *, *, #1978, .T. ) ; +#166 = DATE_AND_TIME ( #416, #2648 ) ; +#167 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#168 = PERSON_AND_ORGANIZATION_ROLE ( 'classification_officer' ) ; +#169 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #1493 ) ; +#170 = ORIENTED_EDGE ( 'NONE', *, *, #1719, .T. ) ; +#171 = DATE_AND_TIME ( #392, #2046 ) ; +#172 = AXIS2_PLACEMENT_3D ( 'NONE', #1628, #1031, #2680 ) ; +#173 = CYLINDRICAL_SURFACE ( 'NONE', #481, 2.000000000000000400 ) ; +#174 = FACE_OUTER_BOUND ( 'NONE', #1445, .T. ) ; +#175 = CYLINDRICAL_SURFACE ( 'NONE', #2506, 2.000000000000001800 ) ; +#176 = PLANE ( 'NONE', #1618 ) ; +#177 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#178 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#179 = ADVANCED_BREP_SHAPE_REPRESENTATION ( '', ( #1505, #750 ), #1642 ) ; +#180 = ORIENTED_EDGE ( 'NONE', *, *, #984, .F. ) ; +#181 = LINE ( 'NONE', #186, #243 ) ; +#182 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000000000, 149.9999999999999700, 18.00000000000000000 ) ) ; +#183 = LINE ( 'NONE', #55, #1766 ) ; +#184 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#185 = EDGE_CURVE ( 'NONE', #1714, #665, #580, .T. ) ; +#186 = CARTESIAN_POINT ( 'NONE', ( -2.000000000000666600, 87.49999999999991500, -0.001000000000001000100 ) ) ; +#187 = AXIS2_PLACEMENT_3D ( 'NONE', #1768, #532, #2255 ) ; +#188 = EDGE_LOOP ( 'NONE', ( #615, #1216, #2631, #600 ) ) ; +#189 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#190 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #1671, #2396, ( #989 ) ) ; +#191 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #111 ) ; +#192 = ITEM_DEFINED_TRANSFORMATION ( 'NONE', 'NONE', #1285, #750 ) ; +#193 = CARTESIAN_POINT ( 'NONE', ( -744.0000000000006800, -87.50000000000002800, 18.00000000000000400 ) ) ; +#194 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#195 = PERSON_AND_ORGANIZATION_ROLE ( 'design_owner' ) ; +#196 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#197 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#198 = APPROVAL_DATE_TIME ( #688, #1243 ) ; +#199 = PRODUCT_DEFINITION_FORMATION_WITH_SPECIFIED_SOURCE ( 'ANY', '', #2348, .NOT_KNOWN. ) ; +#200 = EDGE_CURVE ( 'NONE', #1030, #905, #62, .T. ) ; +#201 = APPROVAL_STATUS ( 'not_yet_approved' ) ; +#202 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #522, #2704, ( #2348 ) ) ; +#203 = VERTEX_POINT ( 'NONE', #476 ) ; +#204 = CARTESIAN_POINT ( 'NONE', ( -373.0000000000006800, -87.50000000000002800, 0.0000000000000000000 ) ) ; +#205 = CYLINDRICAL_SURFACE ( 'NONE', #2621, 2.000000000000000400 ) ; +#206 = DESIGN_CONTEXT ( 'detailed design', #1479, 'design' ) ; +#207 = CYLINDRICAL_SURFACE ( 'NONE', #2673, 2.000000000000001800 ) ; +#208 = ORIENTED_EDGE ( 'NONE', *, *, #802, .T. ) ; +#209 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 18.00000000000001400 ) ) ; +#210 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#211 = APPLICATION_PROTOCOL_DEFINITION ( 'international standard', 'config_control_design', 1994, #422 ) ; +#212 = ORIENTED_EDGE ( 'NONE', *, *, #421, .F. ) ; +#213 = ORIENTED_EDGE ( 'NONE', *, *, #582, .T. ) ; +#214 = AXIS2_PLACEMENT_3D ( 'NONE', #1149, #2623, #1368 ) ; +#215 = EDGE_LOOP ( 'NONE', ( #1807, #670, #252, #1869 ) ) ; +#216 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #1912, #630, ( #1798 ) ) ; +#217 = ORIENTED_EDGE ( 'NONE', *, *, #2100, .T. ) ; +#218 = SHAPE_REPRESENTATION ( 'Rckwand', ( #750 ), #1642 ) ; +#219 = CARTESIAN_POINT ( 'NONE', ( -371.0000000000006800, -5.551115123125782700E-014, 0.0000000000000000000 ) ) ; +#220 = AXIS2_PLACEMENT_3D ( 'NONE', #462, #655, #1472 ) ; +#221 = EDGE_CURVE ( 'NONE', #1679, #1291, #283, .T. ) ; +#222 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#223 = CARTESIAN_POINT ( 'NONE', ( 743.9999999999993200, -87.50000000000002800, 0.0000000000000000000 ) ) ; +#224 = DIRECTION ( 'NONE', ( 2.102695122396129700E-016, -1.000000000000000000, 0.0000000000000000000 ) ) ; +#225 = APPLICATION_PROTOCOL_DEFINITION ( 'international standard', 'config_control_design', 1994, #2267 ) ; +#226 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #1100 ) ; +#227 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#228 = CARTESIAN_POINT ( 'NONE', ( 374.9999999999993200, -87.50000000000002800, -0.001000000000001000100 ) ) ; +#229 = ORIENTED_EDGE ( 'NONE', *, *, #1653, .F. ) ; +#230 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#231 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#232 = APPROVAL_ROLE ( '' ) ; +#233 = CYLINDRICAL_SURFACE ( 'NONE', #393, 2.000000000000001800 ) ; +#234 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#235 = AXIS2_PLACEMENT_3D ( 'NONE', #2407, #1602, #2663 ) ; +#236 = CARTESIAN_POINT ( 'NONE', ( -16.49999999999995700, 16.50000000000001400, 477.0000000000000000 ) ) ; +#237 = CYLINDRICAL_SURFACE ( 'NONE', #467, 2.000000000000000400 ) ; +#238 = ORIENTED_EDGE ( 'NONE', *, *, #2246, .T. ) ; +#239 = PLANE ( 'NONE', #2350 ) ; +#240 = CIRCLE ( 'NONE', #1761, 2.000000000000000400 ) ; +#241 = SECURITY_CLASSIFICATION_LEVEL ( 'unclassified' ) ; +#242 = ORIENTED_EDGE ( 'NONE', *, *, #2535, .F. ) ; +#243 = VECTOR ( 'NONE', #1039, 1000.000000000000000 ) ; +#244 = FACE_BOUND ( 'NONE', #2430, .T. ) ; +#245 = ORIENTED_EDGE ( 'NONE', *, *, #1959, .T. ) ; +#246 = ORIENTED_EDGE ( 'NONE', *, *, #540, .F. ) ; +#247 = PLANE ( 'NONE', #1454 ) ; +#248 = VERTEX_POINT ( 'NONE', #2366 ) ; +#249 = PLANE ( 'NONE', #2617 ) ; +#250 = PLANE ( 'NONE', #806 ) ; +#251 =( REPRESENTATION_RELATIONSHIP ('NONE','NONE', #1116, #2030 ) REPRESENTATION_RELATIONSHIP_WITH_TRANSFORMATION ( #567 )SHAPE_REPRESENTATION_RELATIONSHIP( ) ); +#252 = ORIENTED_EDGE ( 'NONE', *, *, #2089, .T. ) ; +#253 = PRODUCT ( 'Sule', 'Sule', '', ( #432 ) ) ; +#254 = EDGE_LOOP ( 'NONE', ( #376, #1212, #997, #863 ) ) ; +#255 = AXIS2_PLACEMENT_3D ( 'NONE', #2670, #1407, #1574 ) ; +#256 = CARTESIAN_POINT ( 'NONE', ( -373.0000000000006800, 87.49999999999991500, 18.00000000000000400 ) ) ; +#257 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#258 = PRODUCT_DEFINITION_SHAPE ( 'NONE', 'NONE', #2711 ) ; +#259 = EDGE_CURVE ( 'NONE', #1577, #705, #137, .T. ) ; +#260 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #842 ) ; +#261 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#262 = AXIS2_PLACEMENT_3D ( 'NONE', #390, #1838, #1843 ) ; +#263 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#264 = APPROVAL_STATUS ( 'not_yet_approved' ) ; +#265 = DATE_AND_TIME ( #808, #1371 ) ; +#266 = VECTOR ( 'NONE', #2082, 1000.000000000000000 ) ; +#267 = CIRCLE ( 'NONE', #2655, 2.000000000000001800 ) ; +#268 = AXIS2_PLACEMENT_3D ( 'NONE', #2189, #2171, #925 ) ; +#269 = DATE_TIME_ROLE ( 'classification_date' ) ; +#270 = CC_DESIGN_SECURITY_CLASSIFICATION ( #1724, ( #2706 ) ) ; +#271 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#272 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, -16.50000000000000000, 437.0000000000000000 ) ) ; +#273 = EDGE_CURVE ( 'NONE', #1704, #2450, #2204, .T. ) ; +#274 = CIRCLE ( 'NONE', #382, 2.000000000000001800 ) ; +#275 = ORIENTED_EDGE ( 'NONE', *, *, #1260, .F. ) ; +#276 = CARTESIAN_POINT ( 'NONE', ( 762.5000000000000000, -150.0000000000000300, 18.00000000000000000 ) ) ; +#277 = LINE ( 'NONE', #1908, #1383 ) ; +#278 = CIRCLE ( 'NONE', #603, 2.000000000000001800 ) ; +#279 = VERTEX_POINT ( 'NONE', #1709 ) ; +#280 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#281 = DATE_TIME_ROLE ( 'classification_date' ) ; +#282 = ADVANCED_FACE ( 'NONE', ( #2168 ), #1482, .F. ) ; +#283 = CIRCLE ( 'NONE', #1795, 2.000000000000001800 ) ; +#284 = EDGE_LOOP ( 'NONE', ( #937, #208, #33, #141 ) ) ; +#285 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#286 = EDGE_LOOP ( 'NONE', ( #2353, #367, #2206, #1626 ) ) ; +#287 = EDGE_LOOP ( 'NONE', ( #2542, #1839 ) ) ; +#288 = CARTESIAN_POINT ( 'NONE', ( 747.9999999999993200, 87.49999999999991500, -0.001000000000001000100 ) ) ; +#289 = ORIENTED_EDGE ( 'NONE', *, *, #2535, .T. ) ; +#290 = EDGE_CURVE ( 'NONE', #1418, #448, #2130, .T. ) ; +#291 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#292 = AXIS2_PLACEMENT_3D ( 'NONE', #1967, #1532, #487 ) ; +#293 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#294 = ORGANIZATION ( 'NAUO-ORG7', 'UNSPECIFIED', 'UNSPECIFIED' ) ; +#295 = SECURITY_CLASSIFICATION ( '', '', #241 ) ; +#296 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #913 ) ; +#297 = EDGE_CURVE ( 'NONE', #2438, #1606, #638, .T. ) ; +#298 = ORIENTED_EDGE ( 'NONE', *, *, #1777, .T. ) ; +#299 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#300 = FACE_OUTER_BOUND ( 'NONE', #1420, .T. ) ; +#301 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000000000, -150.0000000000000300, 18.00000000000000000 ) ) ; +#302 = FACE_BOUND ( 'NONE', #1903, .T. ) ; +#303 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#304 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#305 = LINE ( 'NONE', #2427, #788 ) ; +#306 = ADVANCED_FACE ( 'NONE', ( #2034 ), #1155, .F. ) ; +#307 = ORIENTED_EDGE ( 'NONE', *, *, #2213, .F. ) ; +#308 = CIRCLE ( 'NONE', #758, 2.000000000000001800 ) ; +#309 = VERTEX_POINT ( 'NONE', #1700 ) ; +#310 = ORIENTED_EDGE ( 'NONE', *, *, #2494, .F. ) ; +#311 = CARTESIAN_POINT ( 'NONE', ( -6.661338147750939200E-013, 87.49999999999991500, -0.001000000000001000100 ) ) ; +#312 = CIRCLE ( 'NONE', #2097, 2.000000000000001800 ) ; +#313 = FACE_BOUND ( 'NONE', #2183, .T. ) ; +#314 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#315 = AXIS2_PLACEMENT_3D ( 'NONE', #2253, #1819, #184 ) ; +#316 = VERTEX_POINT ( 'NONE', #1938 ) ; +#317 = CARTESIAN_POINT ( 'NONE', ( 372.9999999999993200, -5.551115123125782700E-014, 0.0000000000000000000 ) ) ; +#318 = EDGE_LOOP ( 'NONE', ( #1150, #2202 ) ) ; +#319 = VERTEX_POINT ( 'NONE', #1915 ) ; +#320 = CARTESIAN_POINT ( 'NONE', ( 372.9999999999993200, -87.50000000000002800, 18.00000000000000400 ) ) ; +#321 = VERTEX_POINT ( 'NONE', #60 ) ; +#322 = ADVANCED_FACE ( 'NONE', ( #546 ), #207, .F. ) ; +#323 = CARTESIAN_POINT ( 'NONE', ( -744.0000000000006800, -5.551115123125782700E-014, 0.0000000000000000000 ) ) ; +#324 = CARTESIAN_POINT ( 'NONE', ( -6.661338147750939200E-013, -87.50000000000002800, 0.0000000000000000000 ) ) ; +#325 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #12, #1470, ( #1864 ) ) ; +#326 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#327 = AXIS2_PLACEMENT_3D ( 'NONE', #439, #2548, #2322 ) ; +#328 = CARTESIAN_POINT ( 'NONE', ( -375.0000000000006800, -5.526622187142835700E-014, 18.00000000000000400 ) ) ; +#329 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#330 = APPROVAL_DATE_TIME ( #2218, #745 ) ; +#331 = CIRCLE ( 'NONE', #916, 2.000000000000001800 ) ; +#332 = ADVANCED_FACE ( 'NONE', ( #1513, #996, #2602, #2433 ), #2589, .F. ) ; +#333 = FACE_OUTER_BOUND ( 'NONE', #437, .T. ) ; +#334 = CARTESIAN_POINT ( 'NONE', ( -746.0000000000006800, -87.50000000000002800, -0.001000000000001000100 ) ) ; +#335 = PERSON ( 'NAUO-PER7', 'UNSPECIFIED', 'UNSPECIFIED', ('UNSPECIFIED'), ('UNSPECIFIED'), ('UNSPECIFIED') ) ; +#336 = EDGE_CURVE ( 'NONE', #2668, #1121, #968, .T. ) ; +#337 = CIRCLE ( 'NONE', #1017, 2.000000000000001800 ) ; +#338 = ORIENTED_EDGE ( 'NONE', *, *, #854, .F. ) ; +#339 = VECTOR ( 'NONE', #631, 1000.000000000000000 ) ; +#340 = CYLINDRICAL_SURFACE ( 'NONE', #1613, 3.500000000000003100 ) ; +#341 = ORIENTED_EDGE ( 'NONE', *, *, #555, .F. ) ; +#342 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#343 = CIRCLE ( 'NONE', #51, 3.500000000000003100 ) ; +#344 = DIRECTION ( 'NONE', ( -1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#345 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #1527, #2523, ( #199 ) ) ; +#346 = EDGE_CURVE ( 'NONE', #279, #1121, #1575, .T. ) ; +#347 = ORIENTED_EDGE ( 'NONE', *, *, #1995, .F. ) ; +#348 = EDGE_LOOP ( 'NONE', ( #1980, #410, #1808, #124 ) ) ; +#349 = EDGE_LOOP ( 'NONE', ( #1579, #1320, #1578, #2232 ) ) ; +#350 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#351 = EDGE_LOOP ( 'NONE', ( #132, #710 ) ) ; +#352 = CARTESIAN_POINT ( 'NONE', ( -746.0000000000006800, -5.551115123125782700E-014, -0.001000000000001000100 ) ) ; +#353 = DATE_AND_TIME ( #591, #778 ) ; +#354 = AXIS2_PLACEMENT_3D ( 'NONE', #1999, #1581, #2660 ) ; +#355 = SHAPE_DEFINITION_REPRESENTATION ( #1636, #2011 ) ; +#356 = VERTEX_POINT ( 'NONE', #466 ) ; +#357 = EDGE_CURVE ( 'NONE', #2095, #1418, #1865, .T. ) ; +#358 = CARTESIAN_POINT ( 'NONE', ( 372.9999999999993200, 87.49999999999991500, 0.0000000000000000000 ) ) ; +#359 = APPLICATION_PROTOCOL_DEFINITION ( 'international standard', 'config_control_design', 1994, #785 ) ; +#360 = LINE ( 'NONE', #1259, #1108 ) ; +#361 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#362 = CARTESIAN_POINT ( 'NONE', ( -373.0000000000006800, -5.551115123125782700E-014, 18.00000000000000400 ) ) ; +#363 = VECTOR ( 'NONE', #810, 1000.000000000000000 ) ; +#364 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#365 = LINE ( 'NONE', #2152, #2426 ) ; +#366 = DIRECTION ( 'NONE', ( 2.327511582023389100E-016, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#367 = ORIENTED_EDGE ( 'NONE', *, *, #25, .T. ) ; +#368 = DIRECTION ( 'NONE', ( -1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#369 = VECTOR ( 'NONE', #920, 1000.000000000000000 ) ; +#370 = EDGE_CURVE ( 'NONE', #1829, #705, #1447, .T. ) ; +#371 = EDGE_LOOP ( 'NONE', ( #712, #423, #1477 ) ) ; +#372 = CLOSED_SHELL ( 'NONE', ( #2360, #2177, #2160, #1555, #103 ) ) ; +#373 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#374 = VECTOR ( 'NONE', #1064, 1000.000000000000000 ) ; +#375 = ORIENTED_EDGE ( 'NONE', *, *, #2146, .F. ) ; +#376 = ORIENTED_EDGE ( 'NONE', *, *, #715, .T. ) ; +#377 = AXIS2_PLACEMENT_3D ( 'NONE', #1403, #1986, #1755 ) ; +#378 = UNCERTAINTY_MEASURE_WITH_UNIT (LENGTH_MEASURE( 1.000000000000000100E-005 ), #1783, 'distance_accuracy_value', 'NONE'); +#379 = ORIENTED_EDGE ( 'NONE', *, *, #77, .F. ) ; +#380 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#381 = CARTESIAN_POINT ( 'NONE', ( 745.9999999999998900, 133.4999999999999400, 17.99999999999998200 ) ) ; +#382 = AXIS2_PLACEMENT_3D ( 'NONE', #1330, #1736, #2565 ) ; +#383 = ORIENTED_EDGE ( 'NONE', *, *, #1350, .F. ) ; +#384 = ORIENTED_EDGE ( 'NONE', *, *, #715, .F. ) ; +#385 = CARTESIAN_POINT ( 'NONE', ( 370.9999999999993200, -87.50000000000002800, 18.00000000000000400 ) ) ; +#386 = CARTESIAN_POINT ( 'NONE', ( -375.0000000000006800, -87.50000000000002800, 18.00000000000000400 ) ) ; +#387 = PRODUCT_DEFINITION_SHAPE ( 'NONE', 'NONE', #2709 ) ; +#388 = CARTESIAN_POINT ( 'NONE', ( 370.9999999999993200, 87.49999999999991500, -0.001000000000001000100 ) ) ; +#389 = EDGE_CURVE ( 'NONE', #855, #100, #2002, .T. ) ; +#390 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#391 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#392 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#393 = AXIS2_PLACEMENT_3D ( 'NONE', #2040, #2048, #1818 ) ; +#394 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#395 = LINE ( 'NONE', #819, #2114 ) ; +#396 = EDGE_CURVE ( 'NONE', #1800, #1748, #1386, .T. ) ; +#397 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 5.750000000000005300, 261.9999999999999400 ) ) ; +#398 = APPLICATION_PROTOCOL_DEFINITION ( 'international standard', 'config_control_design', 1994, #1012 ) ; +#399 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #1560, #195, ( #1263 ) ) ; +#400 = APPROVAL_DATE_TIME ( #2119, #545 ) ; +#401 = VECTOR ( 'NONE', #2607, 1000.000000000000000 ) ; +#402 = CYLINDRICAL_SURFACE ( 'NONE', #2447, 2.000000000000001800 ) ; +#403 = ORIENTED_EDGE ( 'NONE', *, *, #1756, .T. ) ; +#404 = APPROVAL_ROLE ( '' ) ; +#405 = EDGE_LOOP ( 'NONE', ( #1224, #2307 ) ) ; +#406 = AXIS2_PLACEMENT_3D ( 'NONE', #1896, #690, #461 ) ; +#407 = FACE_OUTER_BOUND ( 'NONE', #1877, .T. ) ; +#408 = CC_DESIGN_APPROVAL ( #972, ( #486 ) ) ; +#409 = DIRECTION ( 'NONE', ( 1.049727191138617500E-016, -0.5150380749100558200, 0.8571673007021113300 ) ) ; +#410 = ORIENTED_EDGE ( 'NONE', *, *, #1545, .F. ) ; +#411 = ORIENTED_EDGE ( 'NONE', *, *, #809, .T. ) ; +#412 = CARTESIAN_POINT ( 'NONE', ( 370.9999999999993200, -87.50000000000002800, 0.0000000000000000000 ) ) ; +#413 = APPROVAL_PERSON_ORGANIZATION ( #1671, #1623, #469 ) ; +#414 = APPROVAL_ROLE ( '' ) ; +#415 = ADVANCED_FACE ( 'NONE', ( #2458 ), #1823, .F. ) ; +#416 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#417 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#418 = APPROVAL_PERSON_ORGANIZATION ( #227, #2315, #19 ) ; +#419 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#420 = CARTESIAN_POINT ( 'NONE', ( -748.0000000000006800, -5.526622187142835700E-014, -0.001000000000001000100 ) ) ; +#421 = EDGE_CURVE ( 'NONE', #2000, #1117, #1934, .T. ) ; +#422 = APPLICATION_CONTEXT ( 'configuration controlled 3d designs of mechanical parts and assemblies' ) ; +#423 = ORIENTED_EDGE ( 'NONE', *, *, #1091, .T. ) ; +#424 = CC_DESIGN_APPROVAL ( #1572, ( #1864 ) ) ; +#425 = AXIS2_PLACEMENT_3D ( 'NONE', #1688, #1678, #679 ) ; +#426 = APPROVAL_PERSON_ORGANIZATION ( #1583, #627, #1684 ) ; +#427 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#428 = LINE ( 'NONE', #388, #363 ) ; +#429 = EDGE_CURVE ( 'NONE', #1776, #934, #1543, .T. ) ; +#430 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#431 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#432 = MECHANICAL_CONTEXT ( 'NONE', #2267, 'mechanical' ) ; +#433 = LINE ( 'NONE', #2592, #573 ) ; +#434 = ORIENTED_EDGE ( 'NONE', *, *, #1873, .F. ) ; +#435 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#436 = VECTOR ( 'NONE', #843, 1000.000000000000000 ) ; +#437 = EDGE_LOOP ( 'NONE', ( #131, #2397, #1289, #1357 ) ) ; +#438 = EDGE_LOOP ( 'NONE', ( #625, #1691 ) ) ; +#439 = CARTESIAN_POINT ( 'NONE', ( -6.661338147750939200E-013, -5.551115123125782700E-014, -0.001000000000001000100 ) ) ; +#440 = CONICAL_SURFACE ( 'NONE', #1070, 3.500000000000003100, 1.029744258676652500 ) ; +#441 = VECTOR ( 'NONE', #101, 1000.000000000000000 ) ; +#442 = CARTESIAN_POINT ( 'NONE', ( -746.0000000000006800, -5.551115123125782700E-014, 0.0000000000000000000 ) ) ; +#443 = DATE_TIME_ROLE ( 'creation_date' ) ; +#444 = ORIENTED_EDGE ( 'NONE', *, *, #336, .T. ) ; +#445 = ORIENTED_EDGE ( 'NONE', *, *, #559, .F. ) ; +#446 = AXIS2_PLACEMENT_3D ( 'NONE', #2371, #2581, #1329 ) ; +#447 = VERTEX_POINT ( 'NONE', #323 ) ; +#448 = VERTEX_POINT ( 'NONE', #2408 ) ; +#449 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#450 = EDGE_LOOP ( 'NONE', ( #1666, #2003 ) ) ; +#451 = EDGE_CURVE ( 'NONE', #2029, #1829, #2432, .T. ) ; +#452 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#453 = AXIS2_PLACEMENT_3D ( 'NONE', #2452, #2480, #1399 ) ; +#454 = SECURITY_CLASSIFICATION_LEVEL ( 'unclassified' ) ; +#455 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#456 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#457 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#458 = ORIENTED_EDGE ( 'NONE', *, *, #2089, .F. ) ; +#459 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#460 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #45, #830, ( #709 ) ) ; +#461 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#462 = CARTESIAN_POINT ( 'NONE', ( 745.9999999999993200, -5.551115123125782700E-014, -0.001000000000001000100 ) ) ; +#463 = VECTOR ( 'NONE', #950, 1000.000000000000000 ) ; +#464 = AXIS2_PLACEMENT_3D ( 'NONE', #955, #1206, #994 ) ; +#465 = ORIENTED_EDGE ( 'NONE', *, *, #704, .T. ) ; +#466 = CARTESIAN_POINT ( 'NONE', ( 747.9999999999993200, -87.50000000000002800, 18.00000000000000400 ) ) ; +#467 = AXIS2_PLACEMENT_3D ( 'NONE', #311, #691, #2575 ) ; +#468 = FACE_OUTER_BOUND ( 'NONE', #254, .T. ) ; +#469 = APPROVAL_ROLE ( '' ) ; +#470 = EDGE_LOOP ( 'NONE', ( #739, #1840, #2472, #1262 ) ) ; +#471 = CYLINDRICAL_SURFACE ( 'NONE', #2580, 2.000000000000001800 ) ; +#472 = FACE_OUTER_BOUND ( 'NONE', #1870, .T. ) ; +#473 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#474 = CIRCLE ( 'NONE', #2471, 2.000000000000000400 ) ; +#475 = EDGE_CURVE ( 'NONE', #1748, #28, #94, .T. ) ; +#476 = CARTESIAN_POINT ( 'NONE', ( 743.9999999999993200, 87.49999999999991500, 0.0000000000000000000 ) ) ; +#477 = ORIENTED_EDGE ( 'NONE', *, *, #259, .T. ) ; +#478 = PERSON_AND_ORGANIZATION_ROLE ( 'classification_officer' ) ; +#479 = EDGE_LOOP ( 'NONE', ( #242, #2132 ) ) ; +#480 = ORIENTED_EDGE ( 'NONE', *, *, #2422, .F. ) ; +#481 = AXIS2_PLACEMENT_3D ( 'NONE', #1144, #1003, #2234 ) ; +#482 = CARTESIAN_POINT ( 'NONE', ( 745.9999999999993200, 87.49999999999991500, 0.0000000000000000000 ) ) ; +#483 = DIRECTION ( 'NONE', ( -1.000000000000000000, -0.0000000000000000000, -0.0000000000000000000 ) ) ; +#484 = ADVANCED_FACE ( 'NONE', ( #635 ), #1573, .F. ) ; +#485 = CONTEXT_DEPENDENT_SHAPE_REPRESENTATION ( #2546, #1817 ) ; +#486 = SECURITY_CLASSIFICATION ( '', '', #2054 ) ; +#487 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#488 = EDGE_CURVE ( 'NONE', #947, #1730, #698, .T. ) ; +#489 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#490 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #605, #988, ( #1378 ) ) ; +#491 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000000000, 149.9999999999999700, 18.00000000000000000 ) ) ; +#492 = PLANE ( 'NONE', #2197 ) ; +#493 = ORIENTED_EDGE ( 'NONE', *, *, #429, .F. ) ; +#494 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#495 = CIRCLE ( 'NONE', #1779, 2.000000000000000000 ) ; +#496 = CIRCLE ( 'NONE', #354, 2.000000000000000000 ) ; +#497 = CARTESIAN_POINT ( 'NONE', ( -16.49999999999995700, -16.50000000000000000, 477.0000000000000000 ) ) ; +#498 = AXIS2_PLACEMENT_3D ( 'NONE', #801, #596, #1431 ) ; +#499 = ADVANCED_FACE ( 'NONE', ( #472 ), #340, .F. ) ; +#500 = PRODUCT_RELATED_PRODUCT_CATEGORY ( 'detail', '', ( #2348 ) ) ; +#501 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000000000, 149.9999999999999700, 18.00000000000000000 ) ) ; +#502 = EDGE_CURVE ( 'NONE', #665, #1085, #2364, .T. ) ; +#503 = VERTEX_POINT ( 'NONE', #547 ) ; +#504 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#505 = LINE ( 'NONE', #796, #1568 ) ; +#506 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#507 = ORIENTED_EDGE ( 'NONE', *, *, #2647, .T. ) ; +#508 = CARTESIAN_POINT ( 'NONE', ( 745.9999999999993200, 87.49999999999991500, -0.001000000000001000100 ) ) ; +#509 = CARTESIAN_POINT ( 'NONE', ( -746.0000000000006800, 87.49999999999991500, 18.00000000000000400 ) ) ; +#510 = EDGE_LOOP ( 'NONE', ( #1803, #1402, #1902, #2642 ) ) ; +#511 = ADVANCED_FACE ( 'NONE', ( #1023 ), #1153, .F. ) ; +#512 = CARTESIAN_POINT ( 'NONE', ( 1.999999999999333900, -5.551115123125782700E-014, 0.0000000000000000000 ) ) ; +#513 = AXIS2_PLACEMENT_3D ( 'NONE', #1310, #261, #1500 ) ; +#514 = ORIENTED_EDGE ( 'NONE', *, *, #1032, .F. ) ; +#515 = CARTESIAN_POINT ( 'NONE', ( -744.0000000000006800, -5.551115123125782700E-014, 18.00000000000000400 ) ) ; +#516 = CC_DESIGN_SECURITY_CLASSIFICATION ( #2358, ( #1378 ) ) ; +#517 = AXIS2_PLACEMENT_3D ( 'NONE', #584, #2415, #731 ) ; +#518 = CARTESIAN_POINT ( 'NONE', ( 372.9999999999993200, 87.49999999999991500, 18.00000000000000400 ) ) ; +#519 = DATE_AND_TIME ( #1948, #73 ) ; +#520 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, -16.50000000000000000, 261.9999999999999400 ) ) ; +#521 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#522 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#523 = VERTEX_POINT ( 'NONE', #533 ) ; +#524 = CARTESIAN_POINT ( 'NONE', ( 16.49999999999995700, 16.50000000000001400, 477.0000000000000000 ) ) ; +#525 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#526 = ADVANCED_FACE ( 'NONE', ( #2201, #736, #2637, #2230, #861, #543, #244, #2562, #1087, #1930, #1283, #1861, #313, #1510, #1833, #2467 ), #110, .F. ) ; +#527 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#528 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#529 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#530 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #1685 ) ; +#531 = EDGE_CURVE ( 'NONE', #905, #827, #1898, .T. ) ; +#532 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#533 = CARTESIAN_POINT ( 'NONE', ( -748.0000000000006800, -5.526622187142835700E-014, 0.0000000000000000000 ) ) ; +#534 = VERTEX_POINT ( 'NONE', #2640 ) ; +#535 = CYLINDRICAL_SURFACE ( 'NONE', #2010, 2.000000000000001800 ) ; +#536 = CYLINDRICAL_SURFACE ( 'NONE', #940, 3.500000000000003100 ) ; +#537 = CARTESIAN_POINT ( 'NONE', ( 374.9999999999993200, 87.49999999999991500, 0.0000000000000000000 ) ) ; +#538 = ORIENTED_EDGE ( 'NONE', *, *, #1222, .F. ) ; +#539 =( NAMED_UNIT ( * ) PLANE_ANGLE_UNIT ( ) SI_UNIT ( $, .RADIAN. ) ); +#540 = EDGE_CURVE ( 'NONE', #1016, #583, #2001, .T. ) ; +#541 = FACE_OUTER_BOUND ( 'NONE', #1325, .T. ) ; +#542 = ADVANCED_FACE ( 'NONE', ( #2059 ), #794, .F. ) ; +#543 = FACE_BOUND ( 'NONE', #769, .T. ) ; +#544 = ORIENTED_EDGE ( 'NONE', *, *, #582, .F. ) ; +#545 = APPROVAL ( #581, 'UNSPECIFIED' ) ; +#546 = FACE_OUTER_BOUND ( 'NONE', #967, .T. ) ; +#547 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, -16.50000000000000000, 346.0000000000000600 ) ) ; +#548 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#549 = ORIENTED_EDGE ( 'NONE', *, *, #854, .T. ) ; +#550 = ORIENTED_EDGE ( 'NONE', *, *, #762, .F. ) ; +#551 = CARTESIAN_POINT ( 'NONE', ( 1.999999999999334300, -87.50000000000002800, 0.0000000000000000000 ) ) ; +#552 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#553 = VERTEX_POINT ( 'NONE', #1971 ) ; +#554 = ORGANIZATION ( 'NAUO-ORG9', 'UNSPECIFIED', 'UNSPECIFIED' ) ; +#555 = EDGE_CURVE ( 'NONE', #2686, #1088, #278, .T. ) ; +#556 = DATE_AND_TIME ( #1165, #1332 ) ; +#557 = CC_DESIGN_APPROVAL ( #2131, ( #1798 ) ) ; +#558 = DATE_AND_TIME ( #1644, #226 ) ; +#559 = EDGE_CURVE ( 'NONE', #703, #553, #183, .T. ) ; +#560 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#561 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#562 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#563 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#564 = EDGE_LOOP ( 'NONE', ( #1364, #696, #678, #2540 ) ) ; +#565 = DATE_AND_TIME ( #506, #1053 ) ; +#566 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#567 = ITEM_DEFINED_TRANSFORMATION ( 'NONE', 'NONE', #2022, #750 ) ; +#568 = DESIGN_CONTEXT ( 'detailed design', #422, 'design' ) ; +#569 = CARTESIAN_POINT ( 'NONE', ( -746.0000000000006800, 87.49999999999991500, 18.00000000000000400 ) ) ; +#570 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#571 = EDGE_CURVE ( 'NONE', #1008, #503, #1356, .T. ) ; +#572 = VECTOR ( 'NONE', #2196, 1000.000000000000000 ) ; +#573 = VECTOR ( 'NONE', #483, 1000.000000000000000 ) ; +#574 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #563, #1231, ( #2093 ) ) ; +#575 = ORIENTED_EDGE ( 'NONE', *, *, #559, .T. ) ; +#576 = AXIS2_PLACEMENT_3D ( 'NONE', #1049, #36, #2539 ) ; +#577 = FACE_OUTER_BOUND ( 'NONE', #1072, .T. ) ; +#578 = ORIENTED_EDGE ( 'NONE', *, *, #164, .T. ) ; +#579 = CARTESIAN_POINT ( 'NONE', ( 4.286263797015730200E-016, 5.750000000000005300, 440.5000000000000000 ) ) ; +#580 = LINE ( 'NONE', #706, #2269 ) ; +#581 = APPROVAL_STATUS ( 'not_yet_approved' ) ; +#582 = EDGE_CURVE ( 'NONE', #826, #2450, #1799, .T. ) ; +#583 = VERTEX_POINT ( 'NONE', #2563 ) ; +#584 = CARTESIAN_POINT ( 'NONE', ( 372.9999999999993200, 87.49999999999991500, -0.001000000000001000100 ) ) ; +#585 = ORIENTED_EDGE ( 'NONE', *, *, #1080, .T. ) ; +#586 = ORIENTED_EDGE ( 'NONE', *, *, #2522, .T. ) ; +#587 = ORIENTED_EDGE ( 'NONE', *, *, #357, .T. ) ; +#588 = MANIFOLD_SOLID_BREP ( 'Aufsatz-Linear austragen1', #2088 ) ; +#589 = CARTESIAN_POINT ( 'NONE', ( 249.0000000000000000, 0.0000000000000000000, 18.00000000000001400 ) ) ; +#590 = DIRECTION ( 'NONE', ( 0.0000000000000000000, -1.000000000000000000, 0.0000000000000000000 ) ) ; +#591 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#592 = AXIS2_PLACEMENT_3D ( 'NONE', #320, #942, #95 ) ; +#593 = APPROVAL_DATE_TIME ( #39, #972 ) ; +#594 = ORIENTED_EDGE ( 'NONE', *, *, #1448, .T. ) ; +#595 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#596 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#597 =( LENGTH_UNIT ( ) NAMED_UNIT ( * ) SI_UNIT ( .MILLI., .METRE. ) ); +#598 = AXIS2_PLACEMENT_3D ( 'NONE', #803, #2702, #1408 ) ; +#599 = LINE ( 'NONE', #793, #1960 ) ; +#600 = ORIENTED_EDGE ( 'NONE', *, *, #185, .F. ) ; +#601 = CARTESIAN_POINT ( 'NONE', ( -746.0000000000000000, 133.4999999999999400, 17.99999999999997500 ) ) ; +#602 = FACE_OUTER_BOUND ( 'NONE', #188, .T. ) ; +#603 = AXIS2_PLACEMENT_3D ( 'NONE', #617, #521, #350 ) ; +#604 = ORIENTED_EDGE ( 'NONE', *, *, #1124, .T. ) ; +#605 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#606 = APPROVAL ( #2035, 'UNSPECIFIED' ) ; +#607 = ORIENTED_EDGE ( 'NONE', *, *, #1725, .F. ) ; +#608 = DIRECTION ( 'NONE', ( 0.0000000000000000000, -1.000000000000000000, 0.0000000000000000000 ) ) ; +#609 = AXIS2_PLACEMENT_3D ( 'NONE', #38, #21, #1465 ) ; +#610 = VECTOR ( 'NONE', #1048, 1000.000000000000000 ) ; +#611 = CARTESIAN_POINT ( 'NONE', ( -2.000000000000666600, 87.49999999999991500, 18.00000000000000400 ) ) ; +#612 = PERSON_AND_ORGANIZATION_ROLE ( 'design_owner' ) ; +#613 = CC_DESIGN_APPROVAL ( #1707, ( #1362 ) ) ; +#614 = ORIENTED_EDGE ( 'NONE', *, *, #2414, .T. ) ; +#615 = ORIENTED_EDGE ( 'NONE', *, *, #1914, .F. ) ; +#616 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#617 = CARTESIAN_POINT ( 'NONE', ( -373.0000000000006800, -87.50000000000002800, 0.0000000000000000000 ) ) ; +#618 = CARTESIAN_POINT ( 'NONE', ( -16.49999999999995700, -16.50000000000000000, 477.0000000000000000 ) ) ; +#619 = EDGE_CURVE ( 'NONE', #932, #1826, #1695, .T. ) ; +#620 = APPROVAL_STATUS ( 'not_yet_approved' ) ; +#621 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#622 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#623 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#624 = AXIS2_PLACEMENT_3D ( 'NONE', #204, #1010, #1867 ) ; +#625 = ORIENTED_EDGE ( 'NONE', *, *, #1923, .F. ) ; +#626 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#627 = APPROVAL ( #1077, 'UNKNOWN' ) ; +#628 = VECTOR ( 'NONE', #1553, 1000.000000000000000 ) ; +#629 = EDGE_CURVE ( 'NONE', #1770, #134, #1219, .T. ) ; +#630 = PERSON_AND_ORGANIZATION_ROLE ( 'design_supplier' ) ; +#631 = DIRECTION ( 'NONE', ( 0.0000000000000000000, -0.5150380749100558200, -0.8571673007021113300 ) ) ; +#632 = VERTEX_POINT ( 'NONE', #1919 ) ; +#633 = LINE ( 'NONE', #1810, #2527 ) ; +#634 = LINE ( 'NONE', #2085, #1114 ) ; +#635 = FACE_OUTER_BOUND ( 'NONE', #770, .T. ) ; +#636 = PERSON_AND_ORGANIZATION_ROLE ( 'creator' ) ; +#637 = ORIENTED_EDGE ( 'NONE', *, *, #961, .F. ) ; +#638 = CIRCLE ( 'NONE', #2385, 2.000000000000001800 ) ; +#639 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #2616, #1641, ( #1798 ) ) ; +#640 = ORIENTED_EDGE ( 'NONE', *, *, #143, .F. ) ; +#641 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#642 = EDGE_CURVE ( 'NONE', #2095, #1328, #2406, .T. ) ; +#643 = ORIENTED_EDGE ( 'NONE', *, *, #1680, .F. ) ; +#644 = SECURITY_CLASSIFICATION_LEVEL ( 'unclassified' ) ; +#645 = ORIENTED_EDGE ( 'NONE', *, *, #185, .T. ) ; +#646 = CONTEXT_DEPENDENT_SHAPE_REPRESENTATION ( #2337, #50 ) ; +#647 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#648 = DIRECTION ( 'NONE', ( 0.0000000000000000000, -1.000000000000000000, 0.0000000000000000000 ) ) ; +#649 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#650 = AXIS2_PLACEMENT_3D ( 'NONE', #2335, #2569, #874 ) ; +#651 =( REPRESENTATION_RELATIONSHIP ('NONE','NONE', #1116, #2020 ) REPRESENTATION_RELATIONSHIP_WITH_TRANSFORMATION ( #976 )SHAPE_REPRESENTATION_RELATIONSHIP( ) ); +#652 = ORIENTED_EDGE ( 'NONE', *, *, #531, .F. ) ; +#653 = SHAPE_DEFINITION_REPRESENTATION ( #1210, #2030 ) ; +#654 = FACE_OUTER_BOUND ( 'NONE', #2164, .T. ) ; +#655 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#656 = CARTESIAN_POINT ( 'NONE', ( 747.9999999999993200, -5.551115123125782700E-014, 0.0000000000000000000 ) ) ; +#657 = FACE_BOUND ( 'NONE', #450, .T. ) ; +#658 = FACE_OUTER_BOUND ( 'NONE', #1105, .T. ) ; +#659 =( REPRESENTATION_RELATIONSHIP ('NONE','NONE', #1116, #2020 ) REPRESENTATION_RELATIONSHIP_WITH_TRANSFORMATION ( #1745 )SHAPE_REPRESENTATION_RELATIONSHIP( ) ); +#660 = EDGE_LOOP ( 'NONE', ( #2595, #681 ) ) ; +#661 = VECTOR ( 'NONE', #504, 1000.000000000000000 ) ; +#662 = VECTOR ( 'NONE', #616, 1000.000000000000000 ) ; +#663 = ORIENTED_EDGE ( 'NONE', *, *, #728, .F. ) ; +#664 = EDGE_CURVE ( 'NONE', #1121, #279, #129, .T. ) ; +#665 = VERTEX_POINT ( 'NONE', #1317 ) ; +#666 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#667 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 7.853012166596451800, 261.9999999999999400 ) ) ; +#668 = ORIENTED_EDGE ( 'NONE', *, *, #2543, .T. ) ; +#669 = PERSON ( 'NAUO-PER1', 'UNSPECIFIED', 'UNSPECIFIED', ('UNSPECIFIED'), ('UNSPECIFIED'), ('UNSPECIFIED') ) ; +#670 = ORIENTED_EDGE ( 'NONE', *, *, #619, .T. ) ; +#671 = CARTESIAN_POINT ( 'NONE', ( -6.661338147750939200E-013, -87.50000000000002800, 18.00000000000000400 ) ) ; +#672 = EDGE_LOOP ( 'NONE', ( #2529, #1895, #1630, #1596 ) ) ; +#673 = EDGE_CURVE ( 'NONE', #79, #28, #894, .T. ) ; +#674 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000005700, -127.5000000000000600, 18.00000000000000400 ) ) ; +#675 = SECURITY_CLASSIFICATION_LEVEL ( 'unclassified' ) ; +#676 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000005700, 127.4999999999999400, 18.00000000000000400 ) ) ; +#677 = DIRECTION ( 'NONE', ( 2.327511582023389100E-016, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#678 = ORIENTED_EDGE ( 'NONE', *, *, #2550, .F. ) ; +#679 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#680 = APPROVAL_PERSON_ORGANIZATION ( #1645, #1174, #1024 ) ; +#681 = ORIENTED_EDGE ( 'NONE', *, *, #2246, .F. ) ; +#682 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, -16.50000000000000000, 349.5000000000000600 ) ) ; +#683 = CARTESIAN_POINT ( 'NONE', ( 743.9999999999993200, -87.50000000000002800, -0.001000000000001000100 ) ) ; +#684 = EDGE_CURVE ( 'NONE', #1897, #203, #2298, .T. ) ; +#685 = APPROVAL_STATUS ( 'not_yet_approved' ) ; +#686 = ADVANCED_FACE ( 'NONE', ( #2127 ), #1514, .F. ) ; +#687 = FACE_OUTER_BOUND ( 'NONE', #286, .T. ) ; +#688 = DATE_AND_TIME ( #1075, #2081 ) ; +#689 = CC_DESIGN_DATE_AND_TIME_ASSIGNMENT ( #949, #443, ( #74 ) ) ; +#690 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#691 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#692 = AXIS2_PLACEMENT_3D ( 'NONE', #1287, #1265, #1298 ) ; +#693 = CARTESIAN_POINT ( 'NONE', ( 1.999999999999333900, -5.551115123125782700E-014, -0.001000000000001000100 ) ) ; +#694 = ORGANIZATION ( 'UNSPECIFIED', 'UNSPECIFIED', '' ) ; +#695 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#696 = ORIENTED_EDGE ( 'NONE', *, *, #1777, .F. ) ; +#697 = FACE_OUTER_BOUND ( 'NONE', #2056, .T. ) ; +#698 = LINE ( 'NONE', #133, #1316 ) ; +#699 = ORIENTED_EDGE ( 'NONE', *, *, #1820, .F. ) ; +#700 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#701 = ADVANCED_FACE ( 'NONE', ( #2266 ), #2568, .F. ) ; +#702 = CONICAL_SURFACE ( 'NONE', #2074, 3.500000000000003100, 1.029744258676652500 ) ; +#703 = VERTEX_POINT ( 'NONE', #1931 ) ; +#704 = EDGE_CURVE ( 'NONE', #356, #2134, #1444, .T. ) ; +#705 = VERTEX_POINT ( 'NONE', #1104 ) ; +#706 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000000000, 149.9999999999999700, 0.0000000000000000000 ) ) ; +#707 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 1.000000000000000000, 0.0000000000000000000 ) ) ; +#708 = ORIENTED_EDGE ( 'NONE', *, *, #1582, .T. ) ; +#709 = PRODUCT_DEFINITION ( 'UNKNOWN', '', #2191, #1037 ) ; +#710 = ORIENTED_EDGE ( 'NONE', *, *, #1294, .F. ) ; +#711 = AXIS2_PLACEMENT_3D ( 'NONE', #1580, #566, #1791 ) ; +#712 = ORIENTED_EDGE ( 'NONE', *, *, #1131, .T. ) ; +#713 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#714 = DATE_AND_TIME ( #222, #2576 ) ; +#715 = EDGE_CURVE ( 'NONE', #1134, #703, #1384, .T. ) ; +#716 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#717 = DIRECTION ( 'NONE', ( -1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#718 = CARTESIAN_POINT ( 'NONE', ( 372.9999999999993200, -87.50000000000002800, 18.00000000000000400 ) ) ; +#719 = ADVANCED_FACE ( 'NONE', ( #1994 ), #2116, .F. ) ; +#720 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#721 = EDGE_LOOP ( 'NONE', ( #1020, #213, #1589, #2066 ) ) ; +#722 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#723 = CARTESIAN_POINT ( 'NONE', ( 745.9999999999993200, -5.551115123125782700E-014, 18.00000000000000400 ) ) ; +#724 = FACE_OUTER_BOUND ( 'NONE', #1061, .T. ) ; +#725 = CYLINDRICAL_SURFACE ( 'NONE', #1554, 2.000000000000001800 ) ; +#726 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 5.750000000000005300, 349.5000000000000600 ) ) ; +#727 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 5.750000000000005300, 261.9999999999999400 ) ) ; +#728 = EDGE_CURVE ( 'NONE', #2067, #1185, #1276, .T. ) ; +#729 = ADVANCED_FACE ( 'NONE', ( #148 ), #175, .F. ) ; +#730 = ORIENTED_EDGE ( 'NONE', *, *, #2062, .T. ) ; +#731 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#732 = LINE ( 'NONE', #2377, #1113 ) ; +#733 = CIRCLE ( 'NONE', #425, 2.000000000000001800 ) ; +#734 = ORIENTED_EDGE ( 'NONE', *, *, #848, .T. ) ; +#735 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#736 = FACE_BOUND ( 'NONE', #768, .T. ) ; +#737 = ORIENTED_EDGE ( 'NONE', *, *, #1672, .F. ) ; +#738 = DIRECTION ( 'NONE', ( 0.0000000000000000000, -0.5150380749100558200, -0.8571673007021113300 ) ) ; +#739 = ORIENTED_EDGE ( 'NONE', *, *, #848, .F. ) ; +#740 = AXIS2_PLACEMENT_3D ( 'NONE', #948, #1771, #1989 ) ; +#741 = ORIENTED_EDGE ( 'NONE', *, *, #123, .F. ) ; +#742 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 5.750000000000005300, 346.0000000000000600 ) ) ; +#743 = ORIENTED_EDGE ( 'NONE', *, *, #961, .T. ) ; +#744 = ADVANCED_FACE ( 'NONE', ( #1438 ), #2389, .F. ) ; +#745 = APPROVAL ( #1853, 'UNSPECIFIED' ) ; +#746 = AXIS2_PLACEMENT_3D ( 'NONE', #197, #1464, #1650 ) ; +#747 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #1264, #2536, ( #2428 ) ) ; +#748 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#749 = APPROVAL_PERSON_ORGANIZATION ( #1168, #2658, #83 ) ; +#750 = AXIS2_PLACEMENT_3D ( 'NONE', #570, #943, #2412 ) ; +#751 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#752 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#753 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#754 = LINE ( 'NONE', #978, #2691 ) ; +#755 = CIRCLE ( 'NONE', #1886, 2.000000000000001800 ) ; +#756 = CARTESIAN_POINT ( 'NONE', ( 1.999999999999334300, 87.49999999999991500, 0.0000000000000000000 ) ) ; +#757 = DATE_AND_TIME ( #1856, #1379 ) ; +#758 = AXIS2_PLACEMENT_3D ( 'NONE', #805, #2483, #2068 ) ; +#759 = ORIENTED_EDGE ( 'NONE', *, *, #1415, .F. ) ; +#760 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#761 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #1370, #2487, ( #1721 ) ) ; +#762 = EDGE_CURVE ( 'NONE', #789, #1390, #267, .T. ) ; +#763 = AXIS2_PLACEMENT_3D ( 'NONE', #1667, #457, #2332 ) ; +#764 = ORIENTED_EDGE ( 'NONE', *, *, #1181, .F. ) ; +#765 = VECTOR ( 'NONE', #1344, 1000.000000000000000 ) ; +#766 = ORIENTED_EDGE ( 'NONE', *, *, #221, .F. ) ; +#767 = CARTESIAN_POINT ( 'NONE', ( -2.000000000000666600, -87.50000000000002800, 18.00000000000000400 ) ) ; +#768 = EDGE_LOOP ( 'NONE', ( #1060, #338 ) ) ; +#769 = EDGE_LOOP ( 'NONE', ( #1549, #799 ) ) ; +#770 = EDGE_LOOP ( 'NONE', ( #1226, #1936, #614, #1885 ) ) ; +#771 = CARTESIAN_POINT ( 'NONE', ( 1.999999999999334300, -87.50000000000002800, 18.00000000000000400 ) ) ; +#772 = APPLICATION_CONTEXT ( 'configuration controlled 3d designs of mechanical parts and assemblies' ) ; +#773 = ORIENTED_EDGE ( 'NONE', *, *, #2146, .T. ) ; +#774 = ORIENTED_EDGE ( 'NONE', *, *, #2405, .F. ) ; +#775 = AXIS2_PLACEMENT_3D ( 'NONE', #1459, #210, #2521 ) ; +#776 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#777 = CC_DESIGN_APPROVAL ( #2174, ( #74 ) ) ; +#778 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #1266 ) ; +#779 = EDGE_CURVE ( 'NONE', #632, #1954, #2697, .T. ) ; +#780 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #326 ) ; +#781 = ORIENTED_EDGE ( 'NONE', *, *, #1241, .F. ) ; +#782 = CIRCLE ( 'NONE', #1918, 2.000000000000001800 ) ; +#783 = FACE_BOUND ( 'NONE', #1094, .T. ) ; +#784 = CARTESIAN_POINT ( 'NONE', ( -375.0000000000006800, -87.50000000000002800, 0.0000000000000000000 ) ) ; +#785 = APPLICATION_CONTEXT ( 'configuration controlled 3d designs of mechanical parts and assemblies' ) ; +#786 = EDGE_CURVE ( 'NONE', #2525, #1450, #2628, .T. ) ; +#787 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 1.000000000000000000, 0.0000000000000000000 ) ) ; +#788 = VECTOR ( 'NONE', #344, 1000.000000000000000 ) ; +#789 = VERTEX_POINT ( 'NONE', #2165 ) ; +#790 = FACE_OUTER_BOUND ( 'NONE', #44, .T. ) ; +#791 = ORIENTED_EDGE ( 'NONE', *, *, #143, .T. ) ; +#792 = LINE ( 'NONE', #1857, #1354 ) ; +#793 = CARTESIAN_POINT ( 'NONE', ( 762.5000000000000000, 149.9999999999999700, 18.00000000000000000 ) ) ; +#794 = CYLINDRICAL_SURFACE ( 'NONE', #740, 2.000000000000001800 ) ; +#795 = APPROVAL_STATUS ( 'not_yet_approved' ) ; +#796 = CARTESIAN_POINT ( 'NONE', ( 4.286263797015730200E-016, 5.750000000000005300, 265.4999999999999400 ) ) ; +#797 = VERTEX_POINT ( 'NONE', #1138 ) ; +#798 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 5.750000000000005300, 261.9999999999999400 ) ) ; +#799 = ORIENTED_EDGE ( 'NONE', *, *, #2018, .F. ) ; +#800 = ORIENTED_EDGE ( 'NONE', *, *, #571, .T. ) ; +#801 = CARTESIAN_POINT ( 'NONE', ( -746.0000000000006800, -5.551115123125782700E-014, 18.00000000000000400 ) ) ; +#802 = EDGE_CURVE ( 'NONE', #1182, #1391, #1689, .T. ) ; +#803 = CARTESIAN_POINT ( 'NONE', ( 4.805184028455755700E-013, 116.9999999999999400, 367.5000000000000600 ) ) ; +#804 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#805 = CARTESIAN_POINT ( 'NONE', ( 745.9999999999993200, 87.49999999999991500, 18.00000000000000400 ) ) ; +#806 = AXIS2_PLACEMENT_3D ( 'NONE', #2336, #1293, #263 ) ; +#807 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#808 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#809 = EDGE_CURVE ( 'NONE', #1063, #979, #2457, .T. ) ; +#810 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#811 = PERSON_AND_ORGANIZATION_ROLE ( 'design_supplier' ) ; +#812 = CC_DESIGN_APPROVAL ( #545, ( #1427 ) ) ; +#813 = ADVANCED_FACE ( 'NONE', ( #2254 ), #959, .F. ) ; +#814 = CIRCLE ( 'NONE', #958, 2.000000000000000400 ) ; +#815 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, -16.50000000000000000, 261.9999999999999400 ) ) ; +#816 = CARTESIAN_POINT ( 'NONE', ( 374.9999999999993200, 87.49999999999991500, -0.001000000000001000100 ) ) ; +#817 = CIRCLE ( 'NONE', #2600, 2.000000000000000000 ) ; +#818 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 5.750000000000005300, 261.9999999999999400 ) ) ; +#819 = CARTESIAN_POINT ( 'NONE', ( -371.0000000000006800, -87.50000000000002800, -0.001000000000001000100 ) ) ; +#820 = APPLICATION_CONTEXT ( 'configuration controlled 3d designs of mechanical parts and assemblies' ) ; +#821 = LINE ( 'NONE', #1190, #572 ) ; +#822 = EDGE_CURVE ( 'NONE', #2216, #934, #120, .T. ) ; +#823 = UNCERTAINTY_MEASURE_WITH_UNIT (LENGTH_MEASURE( 1.000000000000000100E-005 ), #2434, 'distance_accuracy_value', 'NONE'); +#824 = CYLINDRICAL_SURFACE ( 'NONE', #327, 2.000000000000000000 ) ; +#825 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#826 = VERTEX_POINT ( 'NONE', #1127 ) ; +#827 = VERTEX_POINT ( 'NONE', #2604 ) ; +#828 = DIRECTION ( 'NONE', ( -1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#829 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#830 = PERSON_AND_ORGANIZATION_ROLE ( 'creator' ) ; +#831 = ORIENTED_EDGE ( 'NONE', *, *, #2435, .F. ) ; +#832 = ORIENTED_EDGE ( 'NONE', *, *, #259, .F. ) ; +#833 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 18.00000000000001400 ) ) ; +#834 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#835 = CARTESIAN_POINT ( 'NONE', ( -6.661338147750939200E-013, -5.551115123125782700E-014, 0.0000000000000000000 ) ) ; +#836 = EDGE_CURVE ( 'NONE', #1117, #503, #1177, .T. ) ; +#837 = APPLICATION_PROTOCOL_DEFINITION ( 'international standard', 'config_control_design', 1994, #820 ) ; +#838 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#839 = DATE_AND_TIME ( #716, #1610 ) ; +#840 = SECURITY_CLASSIFICATION ( '', '', #644 ) ; +#841 = ADVANCED_FACE ( 'NONE', ( #333 ), #105, .F. ) ; +#842 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#843 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#844 = AXIS2_PLACEMENT_3D ( 'NONE', #1880, #641, #2086 ) ; +#845 = ORIENTED_EDGE ( 'NONE', *, *, #822, .F. ) ; +#846 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #1524, #2108, ( #1054 ) ) ; +#847 = LINE ( 'NONE', #420, #266 ) ; +#848 = EDGE_CURVE ( 'NONE', #248, #1008, #365, .T. ) ; +#849 = VECTOR ( 'NONE', #1687, 1000.000000000000000 ) ; +#850 = CARTESIAN_POINT ( 'NONE', ( 374.9999999999993200, -5.551115123125782700E-014, 18.00000000000000400 ) ) ; +#851 = APPROVAL_STATUS ( 'not_yet_approved' ) ; +#852 = FACE_OUTER_BOUND ( 'NONE', #2411, .T. ) ; +#853 = LINE ( 'NONE', #1382, #1594 ) ; +#854 = EDGE_CURVE ( 'NONE', #1979, #930, #1142, .T. ) ; +#855 = VERTEX_POINT ( 'NONE', #973 ) ; +#856 = CIRCLE ( 'NONE', #1358, 3.500000000000003100 ) ; +#857 = SECURITY_CLASSIFICATION_LEVEL ( 'unclassified' ) ; +#858 = ORIENTED_EDGE ( 'NONE', *, *, #2276, .T. ) ; +#859 = AXIS2_PLACEMENT_3D ( 'NONE', #2380, #1118, #291 ) ; +#860 = LINE ( 'NONE', #676, #2264 ) ; +#861 = FACE_BOUND ( 'NONE', #438, .T. ) ; +#862 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#863 = ORIENTED_EDGE ( 'NONE', *, *, #2115, .T. ) ; +#864 = VERTEX_POINT ( 'NONE', #328 ) ; +#865 = EDGE_CURVE ( 'NONE', #900, #553, #1499, .T. ) ; +#866 = VERTEX_POINT ( 'NONE', #113 ) ; +#867 = APPROVAL_ROLE ( '' ) ; +#868 = EDGE_LOOP ( 'NONE', ( #341, #1943 ) ) ; +#869 = EDGE_LOOP ( 'NONE', ( #307, #831 ) ) ; +#870 = CARTESIAN_POINT ( 'NONE', ( 745.9999999999993200, -87.50000000000002800, 18.00000000000000400 ) ) ; +#871 = CARTESIAN_POINT ( 'NONE', ( 372.9999999999993200, -5.551115123125782700E-014, 18.00000000000000400 ) ) ; +#872 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#873 = DATE_AND_TIME ( #1400, #2344 ) ; +#874 = DIRECTION ( 'NONE', ( 0.0000000000000000000, -0.0000000000000000000, 1.000000000000000000 ) ) ; +#875 = EDGE_CURVE ( 'NONE', #1927, #826, #817, .T. ) ; +#876 = APPROVAL_STATUS ( 'not_yet_approved' ) ; +#877 = PERSON ( 'NAUO-PER2', 'UNSPECIFIED', 'UNSPECIFIED', ('UNSPECIFIED'), ('UNSPECIFIED'), ('UNSPECIFIED') ) ; +#878 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#879 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#880 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#881 = AXIS2_PLACEMENT_3D ( 'NONE', #1922, #2169, #1518 ) ; +#882 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000005700, -127.5000000000000600, 0.0000000000000000000 ) ) ; +#883 = FACE_BOUND ( 'NONE', #318, .T. ) ; +#884 = CC_DESIGN_SECURITY_CLASSIFICATION ( #989, ( #2713 ) ) ; +#885 = VECTOR ( 'NONE', #1539, 1000.000000000000000 ) ; +#886 =( REPRESENTATION_RELATIONSHIP ('NONE','NONE', #1116, #2011 ) REPRESENTATION_RELATIONSHIP_WITH_TRANSFORMATION ( #2245 )SHAPE_REPRESENTATION_RELATIONSHIP( ) ); +#887 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, -0.0000000000000000000 ) ) ; +#888 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#889 = PERSON ( 'NAUO-PER4', 'UNSPECIFIED', 'UNSPECIFIED', ('UNSPECIFIED'), ('UNSPECIFIED'), ('UNSPECIFIED') ) ; +#890 = ADVANCED_FACE ( 'NONE', ( #658 ), #2520, .F. ) ; +#891 = ORIENTED_EDGE ( 'NONE', *, *, #2512, .T. ) ; +#892 = DIRECTION ( 'NONE', ( 2.102695122396129700E-016, -1.000000000000000000, 0.0000000000000000000 ) ) ; +#893 = VECTOR ( 'NONE', #409, 1000.000000000000000 ) ; +#894 = LINE ( 'NONE', #2556, #1729 ) ; +#895 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#896 = PERSON_AND_ORGANIZATION_ROLE ( 'classification_officer' ) ; +#897 = LINE ( 'NONE', #2524, #610 ) ; +#898 = AXIS2_PLACEMENT_3D ( 'NONE', #815, #2288, #1242 ) ; +#899 = DIRECTION ( 'NONE', ( -0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#900 = VERTEX_POINT ( 'NONE', #2649 ) ; +#901 = CARTESIAN_POINT ( 'NONE', ( -6.661338147750939200E-013, -87.50000000000002800, 18.00000000000000400 ) ) ; +#902 = ORIENTED_EDGE ( 'NONE', *, *, #1124, .F. ) ; +#903 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #1583, #478, ( #1562 ) ) ; +#904 = CARTESIAN_POINT ( 'NONE', ( 743.9999999999993200, -5.526622187142835700E-014, 0.0000000000000000000 ) ) ; +#905 = VERTEX_POINT ( 'NONE', #1595 ) ; +#906 = EDGE_CURVE ( 'NONE', #447, #523, #755, .T. ) ; +#907 = CARTESIAN_POINT ( 'NONE', ( 370.9999999999993200, -5.526622187142835700E-014, -0.001000000000001000100 ) ) ; +#908 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #1659, #168, ( #2358 ) ) ; +#909 = ADVANCED_FACE ( 'NONE', ( #1240 ), #2050, .F. ) ; +#910 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#911 = DATE_AND_TIME ( #1879, #1462 ) ; +#912 = CARTESIAN_POINT ( 'NONE', ( 1.999999999999334300, -87.50000000000002800, -0.001000000000001000100 ) ) ; +#913 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#914 = ORIENTED_EDGE ( 'NONE', *, *, #2522, .F. ) ; +#915 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#916 = AXIS2_PLACEMENT_3D ( 'NONE', #718, #1372, #1157 ) ; +#917 = CONTEXT_DEPENDENT_SHAPE_REPRESENTATION ( #251, #960 ) ; +#918 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #1168, #2118, ( #1871 ) ) ; +#919 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#920 = DIRECTION ( 'NONE', ( -1.000000000000000000, -0.0000000000000000000, -0.0000000000000000000 ) ) ; +#921 = FACE_OUTER_BOUND ( 'NONE', #2125, .T. ) ; +#922 = ADVANCED_FACE ( 'NONE', ( #924 ), #1774, .F. ) ; +#923 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#924 = FACE_OUTER_BOUND ( 'NONE', #1247, .T. ) ; +#925 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#926 = FACE_OUTER_BOUND ( 'NONE', #2413, .T. ) ; +#927 = ORIENTED_EDGE ( 'NONE', *, *, #1680, .T. ) ; +#928 = VECTOR ( 'NONE', #1526, 1000.000000000000000 ) ; +#929 = CYLINDRICAL_SURFACE ( 'NONE', #1410, 2.000000000000001800 ) ; +#930 = VERTEX_POINT ( 'NONE', #537 ) ; +#931 = CARTESIAN_POINT ( 'NONE', ( 745.9999999999993200, -87.50000000000002800, -0.001000000000001000100 ) ) ; +#932 = VERTEX_POINT ( 'NONE', #144 ) ; +#933 = LINE ( 'NONE', #1890, #374 ) ; +#934 = VERTEX_POINT ( 'NONE', #579 ) ; +#935 = ORIENTED_EDGE ( 'NONE', *, *, #2343, .T. ) ; +#936 = ORIENTED_EDGE ( 'NONE', *, *, #1385, .F. ) ; +#937 = ORIENTED_EDGE ( 'NONE', *, *, #2263, .F. ) ; +#938 = ADVANCED_FACE ( 'NONE', ( #1109 ), #1051, .F. ) ; +#939 = CC_DESIGN_APPROVAL ( #745, ( #1811 ) ) ; +#940 = AXIS2_PLACEMENT_3D ( 'NONE', #1632, #2051, #5 ) ; +#941 = ORIENTED_EDGE ( 'NONE', *, *, #2446, .T. ) ; +#942 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#943 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#944 = ORIENTED_EDGE ( 'NONE', *, *, #502, .T. ) ; +#945 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#946 = AXIS2_PLACEMENT_3D ( 'NONE', #901, #2605, #1346 ) ; +#947 = VERTEX_POINT ( 'NONE', #2236 ) ; +#948 = CARTESIAN_POINT ( 'NONE', ( 372.9999999999993200, -87.50000000000002800, -0.001000000000001000100 ) ) ; +#949 = DATE_AND_TIME ( #720, #191 ) ; +#950 = DIRECTION ( 'NONE', ( -0.0000000000000000000, 1.000000000000000000, -0.0000000000000000000 ) ) ; +#951 = UNCERTAINTY_MEASURE_WITH_UNIT (LENGTH_MEASURE( 1.000000000000000100E-005 ), #136, 'distance_accuracy_value', 'NONE'); +#952 = CARTESIAN_POINT ( 'NONE', ( -371.0000000000006800, -87.50000000000002800, 0.0000000000000000000 ) ) ; +#953 = APPROVAL_PERSON_ORGANIZATION ( #459, #2439, #1449 ) ; +#954 = ADVANCED_FACE ( 'NONE', ( #921 ), #725, .F. ) ; +#955 = CARTESIAN_POINT ( 'NONE', ( -746.0000000000006800, -87.50000000000002800, 18.00000000000000400 ) ) ; +#956 = VECTOR ( 'NONE', #2274, 1000.000000000000300 ) ; +#957 = CARTESIAN_POINT ( 'NONE', ( 747.9999999999993200, -5.551115123125782700E-014, -0.001000000000001000100 ) ) ; +#958 = AXIS2_PLACEMENT_3D ( 'NONE', #324, #548, #2209 ) ; +#959 = CYLINDRICAL_SURFACE ( 'NONE', #1633, 2.000000000000001800 ) ; +#960 = PRODUCT_DEFINITION_SHAPE ( 'NONE', 'NONE', #2706 ) ; +#961 = EDGE_CURVE ( 'NONE', #319, #1730, #2084, .T. ) ; +#962 = FACE_OUTER_BOUND ( 'NONE', #2609, .T. ) ; +#963 = VERTEX_POINT ( 'NONE', #981 ) ; +#964 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#965 = VECTOR ( 'NONE', #449, 1000.000000000000000 ) ; +#966 = VECTOR ( 'NONE', #738, 1000.000000000000000 ) ; +#967 = EDGE_LOOP ( 'NONE', ( #2338, #64, #1029, #347 ) ) ; +#968 = LINE ( 'NONE', #2551, #1661 ) ; +#969 =( NAMED_UNIT ( * ) SI_UNIT ( $, .STERADIAN. ) SOLID_ANGLE_UNIT ( ) ); +#970 = EDGE_CURVE ( 'NONE', #2450, #1704, #496, .T. ) ; +#971 = VERTEX_POINT ( 'NONE', #2443 ) ; +#972 = APPROVAL ( #2129, 'UNSPECIFIED' ) ; +#973 = CARTESIAN_POINT ( 'NONE', ( 762.4999999999993200, 127.4999999999999400, 0.0000000000000000000 ) ) ; +#974 = PERSON_AND_ORGANIZATION ( #1715, #8 ) ; +#975 = CARTESIAN_POINT ( 'NONE', ( -16.49999999999995700, 16.50000000000001400, 477.0000000000000000 ) ) ; +#976 = ITEM_DEFINED_TRANSFORMATION ( 'NONE', 'NONE', #1988, #750 ) ; +#977 = APPROVAL_DATE_TIME ( #1556, #2174 ) ; +#978 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000005700, 127.4999999999999400, 18.00000000000000400 ) ) ; +#979 = VERTEX_POINT ( 'NONE', #551 ) ; +#980 = SHAPE_DEFINITION_REPRESENTATION ( #2625, #1116 ) ; +#981 = CARTESIAN_POINT ( 'NONE', ( 4.286263797015730200E-016, 5.750000000000005300, 265.4999999999999400 ) ) ; +#982 =( NAMED_UNIT ( * ) SI_UNIT ( $, .STERADIAN. ) SOLID_ANGLE_UNIT ( ) ); +#983 = APPROVAL_PERSON_ORGANIZATION ( #2221, #1523, #2554 ) ; +#984 = EDGE_CURVE ( 'NONE', #1609, #2504, #1078, .T. ) ; +#985 = CC_DESIGN_APPROVAL ( #1174, ( #840 ) ) ; +#986 = VECTOR ( 'NONE', #2582, 1000.000000000000000 ) ; +#987 = VERTEX_POINT ( 'NONE', #771 ) ; +#988 = PERSON_AND_ORGANIZATION_ROLE ( 'creator' ) ; +#989 = SECURITY_CLASSIFICATION ( '', '', #675 ) ; +#990 = EDGE_CURVE ( 'NONE', #1450, #632, #2588, .T. ) ; +#991 = LINE ( 'NONE', #912, #661 ) ; +#992 = CYLINDRICAL_SURFACE ( 'NONE', #142, 2.000000000000001800 ) ; +#993 = ORIENTED_EDGE ( 'NONE', *, *, #2636, .F. ) ; +#994 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#995 = FACE_OUTER_BOUND ( 'NONE', #1026, .T. ) ; +#996 = FACE_BOUND ( 'NONE', #405, .T. ) ; +#997 = ORIENTED_EDGE ( 'NONE', *, *, #1131, .F. ) ; +#998 = EDGE_CURVE ( 'NONE', #1422, #316, #1563, .T. ) ; +#999 = MECHANICAL_CONTEXT ( 'NONE', #785, 'mechanical' ) ; +#1000 = ORIENTED_EDGE ( 'NONE', *, *, #802, .F. ) ; +#1001 = ORIENTED_EDGE ( 'NONE', *, *, #1245, .F. ) ; +#1002 = ORIENTED_EDGE ( 'NONE', *, *, #2374, .F. ) ; +#1003 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1004 = ORGANIZATION ( 'NAUO-ORG6', 'UNSPECIFIED', 'UNSPECIFIED' ) ; +#1005 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1006 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1007 = APPROVAL_PERSON_ORGANIZATION ( #391, #2131, #414 ) ; +#1008 = VERTEX_POINT ( 'NONE', #1221 ) ; +#1009 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#1010 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#1011 = DIRECTION ( 'NONE', ( 0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#1012 = APPLICATION_CONTEXT ( 'configuration controlled 3d designs of mechanical parts and assemblies' ) ; +#1013 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#1014 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#1015 = CC_DESIGN_DATE_AND_TIME_ASSIGNMENT ( #2349, #9, ( #1864 ) ) ; +#1016 = VERTEX_POINT ( 'NONE', #611 ) ; +#1017 = AXIS2_PLACEMENT_3D ( 'NONE', #2615, #314, #2501 ) ; +#1018 = LINE ( 'NONE', #288, #928 ) ; +#1019 = CIRCLE ( 'NONE', #624, 2.000000000000001800 ) ; +#1020 = ORIENTED_EDGE ( 'NONE', *, *, #875, .T. ) ; +#1021 = LINE ( 'NONE', #2290, #339 ) ; +#1022 = CARTESIAN_POINT ( 'NONE', ( -744.0000000000006800, -87.50000000000002800, 0.0000000000000000000 ) ) ; +#1023 = FACE_OUTER_BOUND ( 'NONE', #1351, .T. ) ; +#1024 = APPROVAL_ROLE ( '' ) ; +#1025 = VERTEX_POINT ( 'NONE', #2284 ) ; +#1026 = EDGE_LOOP ( 'NONE', ( #2233, #2027, #102, #298 ) ) ; +#1027 = PLANE ( 'NONE', #576 ) ; +#1028 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1029 = ORIENTED_EDGE ( 'NONE', *, *, #984, .T. ) ; +#1030 = VERTEX_POINT ( 'NONE', #618 ) ; +#1031 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1032 = EDGE_CURVE ( 'NONE', #1979, #789, #428, .T. ) ; +#1033 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #455 ) ; +#1034 = DATE_TIME_ROLE ( 'classification_date' ) ; +#1035 = APPROVAL_PERSON_ORGANIZATION ( #974, #1268, #1295 ) ; +#1036 = AXIS2_PLACEMENT_3D ( 'NONE', #75, #923, #2596 ) ; +#1037 = DESIGN_CONTEXT ( 'detailed design', #820, 'design' ) ; +#1038 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#1039 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1040 = PRODUCT_DEFINITION_SHAPE ( 'NONE', 'NONE', #2710 ) ; +#1041 = CC_DESIGN_DATE_AND_TIME_ASSIGNMENT ( #1469, #2570, ( #1724 ) ) ; +#1042 = APPROVAL_DATE_TIME ( #2687, #1962 ) ; +#1043 = EDGE_CURVE ( 'NONE', #2679, #319, #1471, .T. ) ; +#1044 = CARTESIAN_POINT ( 'NONE', ( -375.0000000000006800, -87.50000000000002800, -0.001000000000001000100 ) ) ; +#1045 = MECHANICAL_CONTEXT ( 'NONE', #1196, 'mechanical' ) ; +#1046 = ORIENTED_EDGE ( 'NONE', *, *, #1820, .T. ) ; +#1047 = APPROVAL_PERSON_ORGANIZATION ( #1590, #2241, #1664 ) ; +#1048 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1049 = CARTESIAN_POINT ( 'NONE', ( 249.0000000000000000, 0.0000000000000000000, 18.00000000000001400 ) ) ; +#1050 = CARTESIAN_POINT ( 'NONE', ( -371.0000000000006800, 87.49999999999991500, -0.001000000000001000100 ) ) ; +#1051 = CYLINDRICAL_SURFACE ( 'NONE', #91, 2.000000000000001800 ) ; +#1052 = DATE_TIME_ROLE ( 'creation_date' ) ; +#1053 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #178 ) ; +#1054 = SECURITY_CLASSIFICATION ( '', '', #61 ) ; +#1055 = ORIENTED_EDGE ( 'NONE', *, *, #1508, .T. ) ; +#1056 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#1057 = CYLINDRICAL_SURFACE ( 'NONE', #1520, 3.500000000000003100 ) ; +#1058 = ORIENTED_EDGE ( 'NONE', *, *, #1080, .F. ) ; +#1059 = APPLICATION_PROTOCOL_DEFINITION ( 'international standard', 'config_control_design', 1994, #1426 ) ; +#1060 = ORIENTED_EDGE ( 'NONE', *, *, #2062, .F. ) ; +#1061 = EDGE_LOOP ( 'NONE', ( #1975, #411, #2208, #1733 ) ) ; +#1062 = PLANE ( 'NONE', #2659 ) ; +#1063 = VERTEX_POINT ( 'NONE', #2459 ) ; +#1064 = DIRECTION ( 'NONE', ( -2.102695122396129700E-016, 1.000000000000000000, -0.0000000000000000000 ) ) ; +#1065 = AXIS2_PLACEMENT_3D ( 'NONE', #2559, #1301, #1366 ) ; +#1066 = APPROVAL_STATUS ( 'not_yet_approved' ) ; +#1067 = VECTOR ( 'NONE', #427, 1000.000000000000000 ) ; +#1068 = CARTESIAN_POINT ( 'NONE', ( 372.9999999999993200, -5.551115123125782700E-014, -0.001000000000001000100 ) ) ; +#1069 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#1070 = AXIS2_PLACEMENT_3D ( 'NONE', #2126, #2342, #1056 ) ; +#1071 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1072 = EDGE_LOOP ( 'NONE', ( #1506, #1796, #652, #586 ) ) ; +#1073 = APPROVAL_PERSON_ORGANIZATION ( #525, #1962, #2498 ) ; +#1074 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #974, #1495, ( #295 ) ) ; +#1075 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#1076 = CARTESIAN_POINT ( 'NONE', ( -16.49999999999995700, 16.50000000000001400, 477.0000000000000000 ) ) ; +#1077 = APPROVAL_STATUS ( 'not_yet_approved' ) ; +#1078 = CIRCLE ( 'NONE', #2111, 2.000000000000001800 ) ; +#1079 = CARTESIAN_POINT ( 'NONE', ( 249.0000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1080 = EDGE_CURVE ( 'NONE', #1907, #963, #2519, .T. ) ; +#1081 = ORIENTED_EDGE ( 'NONE', *, *, #1043, .F. ) ; +#1082 = CIRCLE ( 'NONE', #1814, 2.000000000000001800 ) ; +#1083 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000000000, -150.0000000000000300, 18.00000000000000000 ) ) ; +#1084 = LINE ( 'NONE', #1855, #2124 ) ; +#1085 = VERTEX_POINT ( 'NONE', #2497 ) ; +#1086 = LINE ( 'NONE', #1699, #1067 ) ; +#1087 = FACE_BOUND ( 'NONE', #104, .T. ) ; +#1088 = VERTEX_POINT ( 'NONE', #784 ) ; +#1089 = VECTOR ( 'NONE', #1258, 1000.000000000000000 ) ; +#1090 = CARTESIAN_POINT ( 'NONE', ( -373.0000000000006800, -87.50000000000002800, 18.00000000000000400 ) ) ; +#1091 = EDGE_CURVE ( 'NONE', #1516, #900, #1343, .T. ) ; +#1092 = AXIS2_PLACEMENT_3D ( 'NONE', #529, #1151, #2228 ) ; +#1093 = DATE_TIME_ROLE ( 'classification_date' ) ; +#1094 = EDGE_LOOP ( 'NONE', ( #936, #663 ) ) ; +#1095 = EDGE_LOOP ( 'NONE', ( #1162, #2060, #2195, #165 ) ) ; +#1096 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1097 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1098 = PERSON ( 'NAUO-PER5', 'UNSPECIFIED', 'UNSPECIFIED', ('UNSPECIFIED'), ('UNSPECIFIED'), ('UNSPECIFIED') ) ; +#1099 = CARTESIAN_POINT ( 'NONE', ( 745.9999999999993200, -5.551115123125782700E-014, 0.0000000000000000000 ) ) ; +#1100 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#1101 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#1102 = EDGE_CURVE ( 'NONE', #1954, #1714, #599, .T. ) ; +#1103 = DATE_AND_TIME ( #2078, #2654 ) ; +#1104 = CARTESIAN_POINT ( 'NONE', ( 747.9999999999993200, -5.551115123125782700E-014, 18.00000000000000400 ) ) ; +#1105 = EDGE_LOOP ( 'NONE', ( #1081, #238, #1455, #941 ) ) ; +#1106 = ADVANCED_FACE ( 'NONE', ( #174 ), #233, .F. ) ; +#1107 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1108 = VECTOR ( 'NONE', #26, 1000.000000000000000 ) ; +#1109 = FACE_OUTER_BOUND ( 'NONE', #2537, .T. ) ; +#1110 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 5.750000000000005300, 437.0000000000000000 ) ) ; +#1111 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1112 = ORIENTED_EDGE ( 'NONE', *, *, #273, .F. ) ; +#1113 = VECTOR ( 'NONE', #2144, 1000.000000000000000 ) ; +#1114 = VECTOR ( 'NONE', #1428, 1000.000000000000000 ) ; +#1115 = VERTEX_POINT ( 'NONE', #1852 ) ; +#1116 = SHAPE_REPRESENTATION ( '_Getrnkeautomat_BG', ( #262, #315, #2022, #453, #1731, #2553, #1285, #1988, #2499, #598 ), #1512 ) ; +#1117 = VERTEX_POINT ( 'NONE', #1607 ) ; +#1118 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1119 = VECTOR ( 'NONE', #2101, 1000.000000000000000 ) ; +#1120 = ORIENTED_EDGE ( 'NONE', *, *, #2577, .T. ) ; +#1121 = VERTEX_POINT ( 'NONE', #2700 ) ; +#1122 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#1123 = VERTEX_POINT ( 'NONE', #1022 ) ; +#1124 = EDGE_CURVE ( 'NONE', #2686, #2438, #395, .T. ) ; +#1125 = EDGE_LOOP ( 'NONE', ( #759, #1414 ) ) ; +#1126 = CARTESIAN_POINT ( 'NONE', ( 370.9999999999993200, -5.526622187142835700E-014, 0.0000000000000000000 ) ) ; +#1127 = CARTESIAN_POINT ( 'NONE', ( -2.000000000000666100, -5.526622187142835700E-014, 0.0000000000000000000 ) ) ; +#1128 = CONTEXT_DEPENDENT_SHAPE_REPRESENTATION ( #2320, #387 ) ; +#1129 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#1130 = ADVANCED_FACE ( 'NONE', ( #1498 ), #1824, .F. ) ; +#1131 = EDGE_CURVE ( 'NONE', #797, #1516, #20, .T. ) ; +#1132 = CARTESIAN_POINT ( 'NONE', ( 16.49999999999995700, 16.50000000000001400, 477.0000000000000000 ) ) ; +#1133 = APPROVAL_DATE_TIME ( #1780, #2016 ) ; +#1134 = VERTEX_POINT ( 'NONE', #2053 ) ; +#1135 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #2651 ) ; +#1136 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000000000, -150.0000000000000300, 18.00000000000000000 ) ) ; +#1137 = CIRCLE ( 'NONE', #775, 2.000000000000001800 ) ; +#1138 = CARTESIAN_POINT ( 'NONE', ( 249.0000000000000000, 0.0000000000000000000, 18.00000000000001400 ) ) ; +#1139 =( NAMED_UNIT ( * ) SI_UNIT ( $, .STERADIAN. ) SOLID_ANGLE_UNIT ( ) ); +#1140 = CARTESIAN_POINT ( 'NONE', ( 16.49999999999995700, -16.50000000000000000, 0.0000000000000000000 ) ) ; +#1141 = CARTESIAN_POINT ( 'NONE', ( 762.4999999999990900, -127.5000000000000600, 0.0000000000000000000 ) ) ; +#1142 = CIRCLE ( 'NONE', #1603, 2.000000000000001800 ) ; +#1143 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, -16.50000000000000000, 261.9999999999999400 ) ) ; +#1144 = CARTESIAN_POINT ( 'NONE', ( -6.661338147750939200E-013, -87.50000000000002800, -0.001000000000001000100 ) ) ; +#1145 = ADVANCED_FACE ( 'NONE', ( #852 ), #1993, .F. ) ; +#1146 = ORIENTED_EDGE ( 'NONE', *, *, #1458, .T. ) ; +#1147 = FACE_OUTER_BOUND ( 'NONE', #1489, .T. ) ; +#1148 = FACE_OUTER_BOUND ( 'NONE', #66, .T. ) ; +#1149 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000005700, 127.4999999999999400, 18.00000000000000400 ) ) ; +#1150 = ORIENTED_EDGE ( 'NONE', *, *, #346, .F. ) ; +#1151 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1152 = CIRCLE ( 'NONE', #1209, 2.000000000000001800 ) ; +#1153 = CONICAL_SURFACE ( 'NONE', #1487, 3.500000000000003100, 1.029744258676652500 ) ; +#1154 = AXIS2_PLACEMENT_3D ( 'NONE', #85, #1503, #71 ) ; +#1155 = CYLINDRICAL_SURFACE ( 'NONE', #2128, 3.500000000000003100 ) ; +#1156 = CARTESIAN_POINT ( 'NONE', ( -6.661338147750939200E-013, 87.49999999999991500, 18.00000000000000400 ) ) ; +#1157 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1158 = CC_DESIGN_APPROVAL ( #1962, ( #2191 ) ) ; +#1159 = EDGE_LOOP ( 'NONE', ( #645, #538, #640, #1764 ) ) ; +#1160 = ORIENTED_EDGE ( 'NONE', *, *, #1309, .T. ) ; +#1161 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1162 = ORIENTED_EDGE ( 'NONE', *, *, #1914, .T. ) ; +#1163 = ADVANCED_FACE ( 'NONE', ( #2555, #49, #1406, #1205, #302, #1434, #783, #883, #1891, #657, #2188, #2390, #2321, #1753, #117, #1620 ), #2688, .T. ) ; +#1164 = APPROVAL_DATE_TIME ( #1425, #1623 ) ; +#1165 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#1166 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1167 = DATE_AND_TIME ( #910, #1708 ) ; +#1168 = PERSON_AND_ORGANIZATION ( #889, #2280 ) ; +#1169 = CARTESIAN_POINT ( 'NONE', ( -746.0000000000006800, -5.551115123125782700E-014, 0.0000000000000000000 ) ) ; +#1170 = DIRECTION ( 'NONE', ( -0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1171 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#1172 = EDGE_LOOP ( 'NONE', ( #730, #2573, #1340, #2436 ) ) ; +#1173 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#1174 = APPROVAL ( #2275, 'UNSPECIFIED' ) ; +#1175 = FACE_OUTER_BOUND ( 'NONE', #1095, .T. ) ; +#1176 = ORGANIZATION ( 'NAUO-ORG3', 'UNSPECIFIED', 'UNSPECIFIED' ) ; +#1177 = LINE ( 'NONE', #1945, #885 ) ; +#1178 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1179 = PLANE ( 'NONE', #1441 ) ; +#1180 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #2250, #1286, ( #1724 ) ) ; +#1181 = EDGE_CURVE ( 'NONE', #1907, #1739, #2355, .T. ) ; +#1182 = VERTEX_POINT ( 'NONE', #412 ) ; +#1183 = VECTOR ( 'NONE', #1507, 1000.000000000000000 ) ; +#1184 = FACE_OUTER_BOUND ( 'NONE', #2257, .T. ) ; +#1185 = VERTEX_POINT ( 'NONE', #2102 ) ; +#1186 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 18.00000000000001400 ) ) ; +#1187 = LINE ( 'NONE', #209, #2368 ) ; +#1188 = CARTESIAN_POINT ( 'NONE', ( 373.0000000000000600, 133.4999999999999400, 18.00000000000000000 ) ) ; +#1189 = ORIENTED_EDGE ( 'NONE', *, *, #1995, .T. ) ; +#1190 = CARTESIAN_POINT ( 'NONE', ( 249.0000000000000000, 0.0000000000000000000, 18.00000000000001400 ) ) ; +#1191 = ORIENTED_EDGE ( 'NONE', *, *, #1923, .T. ) ; +#1192 = CC_DESIGN_SECURITY_CLASSIFICATION ( #1054, ( #2709 ) ) ; +#1193 = VERTEX_POINT ( 'NONE', #1424 ) ; +#1194 = AXIS2_PLACEMENT_3D ( 'NONE', #871, #1920, #31 ) ; +#1195 = CARTESIAN_POINT ( 'NONE', ( -6.661338147750939200E-013, -5.551115123125782700E-014, 0.0000000000000000000 ) ) ; +#1196 = APPLICATION_CONTEXT ( 'configuration controlled 3d designs of mechanical parts and assemblies' ) ; +#1197 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 5.750000000000005300, 433.5000000000000000 ) ) ; +#1198 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#1199 = ORIENTED_EDGE ( 'NONE', *, *, #164, .F. ) ; +#1200 = SHAPE_DEFINITION_REPRESENTATION ( #2262, #2020 ) ; +#1201 = DIRECTION ( 'NONE', ( 0.0000000000000000000, -1.000000000000000000, 0.0000000000000000000 ) ) ; +#1202 = APPROVAL_ROLE ( '' ) ; +#1203 = VECTOR ( 'NONE', #159, 1000.000000000000000 ) ; +#1204 = AXIS2_PLACEMENT_3D ( 'NONE', #317, #751, #1757 ) ; +#1205 = FACE_BOUND ( 'NONE', #287, .T. ) ; +#1206 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1207 = CC_DESIGN_DATE_AND_TIME_ASSIGNMENT ( #1648, #2515, ( #1811 ) ) ; +#1208 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1209 = AXIS2_PLACEMENT_3D ( 'NONE', #723, #2178, #2354 ) ; +#1210 = PRODUCT_DEFINITION_SHAPE ( 'NONE', 'NONE', #1721 ) ; +#1211 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1212 = ORIENTED_EDGE ( 'NONE', *, *, #1309, .F. ) ; +#1213 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1214 = CC_DESIGN_APPROVAL ( #1623, ( #989 ) ) ; +#1215 = VECTOR ( 'NONE', #2530, 1000.000000000000000 ) ; +#1216 = ORIENTED_EDGE ( 'NONE', *, *, #2226, .F. ) ; +#1217 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#1218 = LINE ( 'NONE', #2541, #1694 ) ; +#1219 = CIRCLE ( 'NONE', #1701, 2.000000000000001800 ) ; +#1220 = CARTESIAN_POINT ( 'NONE', ( 743.9999999999993200, -5.526622187142835700E-014, 18.00000000000000400 ) ) ; +#1221 = CARTESIAN_POINT ( 'NONE', ( 4.286263797015724300E-016, -16.50000000000000000, 353.0000000000000600 ) ) ; +#1222 = EDGE_CURVE ( 'NONE', #2525, #665, #1404, .T. ) ; +#1223 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1224 = ORIENTED_EDGE ( 'NONE', *, *, #1525, .F. ) ; +#1225 = ORIENTED_EDGE ( 'NONE', *, *, #2213, .T. ) ; +#1226 = ORIENTED_EDGE ( 'NONE', *, *, #2302, .F. ) ; +#1227 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1228 = AXIS2_PLACEMENT_3D ( 'NONE', #2139, #887, #899 ) ; +#1229 = EDGE_CURVE ( 'NONE', #2634, #1030, #1593, .T. ) ; +#1230 = CARTESIAN_POINT ( 'NONE', ( -1.110223024625156500E-013, 477.0000000000000000, 18.00000000000001400 ) ) ; +#1231 = PERSON_AND_ORGANIZATION_ROLE ( 'creator' ) ; +#1232 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #1014, #2025, ( #1427 ) ) ; +#1233 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#1234 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, -16.50000000000000000, 437.0000000000000000 ) ) ; +#1235 = DIRECTION ( 'NONE', ( -2.102695122396129700E-016, 1.000000000000000000, 0.0000000000000000000 ) ) ; +#1236 = ORIENTED_EDGE ( 'NONE', *, *, #2032, .T. ) ; +#1237 = SHAPE_DEFINITION_REPRESENTATION ( #2531, #218 ) ; +#1238 = CARTESIAN_POINT ( 'NONE', ( -748.0000000000006800, 87.49999999999991500, -0.001000000000001000100 ) ) ; +#1239 = APPLICATION_PROTOCOL_DEFINITION ( 'international standard', 'config_control_design', 1994, #1196 ) ; +#1240 = FACE_OUTER_BOUND ( 'NONE', #2170, .T. ) ; +#1241 = EDGE_CURVE ( 'NONE', #523, #316, #847, .T. ) ; +#1242 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#1243 = APPROVAL ( #685, 'UNKNOWN' ) ; +#1244 = CARTESIAN_POINT ( 'NONE', ( 743.9999999999993200, 87.49999999999991500, 18.00000000000000400 ) ) ; +#1245 = EDGE_CURVE ( 'NONE', #1088, #1606, #1681, .T. ) ; +#1246 = CIRCLE ( 'NONE', #1875, 3.500000000000003100 ) ; +#1247 = EDGE_LOOP ( 'NONE', ( #2603, #1480, #1326, #1806 ) ) ; +#1248 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#1249 = VECTOR ( 'NONE', #271, 1000.000000000000000 ) ; +#1250 = APPROVAL_STATUS ( 'not_yet_approved' ) ; +#1251 = VECTOR ( 'NONE', #2393, 1000.000000000000000 ) ; +#1252 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000000000, -150.0000000000000300, 0.0000000000000000000 ) ) ; +#1253 = EDGE_LOOP ( 'NONE', ( #1278, #2676, #2365, #465 ) ) ; +#1254 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#1255 = PRODUCT_DEFINITION_SHAPE ( 'NONE', 'NONE', #2707 ) ; +#1256 = ORIENTED_EDGE ( 'NONE', *, *, #2343, .F. ) ; +#1257 = ORIENTED_EDGE ( 'NONE', *, *, #2032, .F. ) ; +#1258 = DIRECTION ( 'NONE', ( -1.000000000000000000, -0.0000000000000000000, -0.0000000000000000000 ) ) ; +#1259 = CARTESIAN_POINT ( 'NONE', ( -1.110223024625156500E-013, 477.0000000000000000, 18.00000000000001400 ) ) ; +#1260 = EDGE_CURVE ( 'NONE', #203, #1609, #2080, .T. ) ; +#1261 = PERSON_AND_ORGANIZATION_ROLE ( 'creator' ) ; +#1262 = ORIENTED_EDGE ( 'NONE', *, *, #1525, .T. ) ; +#1263 = PRODUCT ( 'Rippe', 'Rippe', '', ( #1045 ) ) ; +#1264 = PERSON_AND_ORGANIZATION ( #335, #294 ) ; +#1265 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1266 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#1267 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000005700, -127.5000000000000600, 18.00000000000000400 ) ) ; +#1268 = APPROVAL ( #2560, 'UNKNOWN' ) ; +#1269 = DATE_AND_TIME ( #807, #169 ) ; +#1270 = EDGE_CURVE ( 'NONE', #826, #1927, #495, .T. ) ; +#1271 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, -16.50000000000000000, 258.4999999999999400 ) ) ; +#1272 = SECURITY_CLASSIFICATION_LEVEL ( 'unclassified' ) ; +#1273 = ORIENTED_EDGE ( 'NONE', *, *, #1725, .T. ) ; +#1274 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#1275 = VECTOR ( 'NONE', #829, 1000.000000000000000 ) ; +#1276 = CIRCLE ( 'NONE', #592, 2.000000000000001800 ) ; +#1277 = AXIS2_PLACEMENT_3D ( 'NONE', #1353, #119, #127 ) ; +#1278 = ORIENTED_EDGE ( 'NONE', *, *, #1377, .F. ) ; +#1279 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#1280 = LINE ( 'NONE', #693, #1183 ) ; +#1281 = EDGE_LOOP ( 'NONE', ( #2120, #734, #800, #1322 ) ) ; +#1282 = CARTESIAN_POINT ( 'NONE', ( 762.5000000000000000, 149.9999999999999700, 0.0000000000000000000 ) ) ; +#1283 = FACE_BOUND ( 'NONE', #2247, .T. ) ; +#1284 = ORIENTED_EDGE ( 'NONE', *, *, #2698, .T. ) ; +#1285 = AXIS2_PLACEMENT_3D ( 'NONE', #1188, #2049, #1213 ) ; +#1286 = PERSON_AND_ORGANIZATION_ROLE ( 'classification_officer' ) ; +#1287 = CARTESIAN_POINT ( 'NONE', ( 372.9999999999993200, -87.50000000000002800, -0.001000000000001000100 ) ) ; +#1288 = PERSON ( 'NAUO-PER9', 'UNSPECIFIED', 'UNSPECIFIED', ('UNSPECIFIED'), ('UNSPECIFIED'), ('UNSPECIFIED') ) ; +#1289 = ORIENTED_EDGE ( 'NONE', *, *, #990, .F. ) ; +#1290 = DIRECTION ( 'NONE', ( 0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#1291 = VERTEX_POINT ( 'NONE', #1683 ) ; +#1292 = DIRECTION ( 'NONE', ( -1.000000000000000000, -0.0000000000000000000, -0.0000000000000000000 ) ) ; +#1293 = DIRECTION ( 'NONE', ( -1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1294 = EDGE_CURVE ( 'NONE', #523, #447, #1376, .T. ) ; +#1295 = APPROVAL_ROLE ( '' ) ; +#1296 = CC_DESIGN_DATE_AND_TIME_ASSIGNMENT ( #1913, #1034, ( #840 ) ) ; +#1297 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#1298 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1299 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#1300 = CC_DESIGN_DATE_AND_TIME_ASSIGNMENT ( #2277, #52, ( #295 ) ) ; +#1301 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1302 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#1303 =( REPRESENTATION_RELATIONSHIP ('NONE','NONE', #1116, #2030 ) REPRESENTATION_RELATIONSHIP_WITH_TRANSFORMATION ( #147 )SHAPE_REPRESENTATION_RELATIONSHIP( ) ); +#1304 = CIRCLE ( 'NONE', #1277, 2.000000000000000400 ) ; +#1305 = DATE_AND_TIME ( #1958, #1851 ) ; +#1306 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#1307 = ADVANCED_BREP_SHAPE_REPRESENTATION ( '', ( #588, #750 ), #2303 ) ; +#1308 = PLANE ( 'NONE', #1405 ) ; +#1309 = EDGE_CURVE ( 'NONE', #1516, #703, #360, .T. ) ; +#1310 = CARTESIAN_POINT ( 'NONE', ( 745.9999999999993200, -5.551115123125782700E-014, 18.00000000000000400 ) ) ; +#1311 = DATE_TIME_ROLE ( 'classification_date' ) ; +#1312 = ADVANCED_FACE ( 'NONE', ( #2485 ), #1750, .F. ) ; +#1313 = CC_DESIGN_SECURITY_CLASSIFICATION ( #840, ( #2191 ) ) ; +#1314 = EDGE_LOOP ( 'NONE', ( #3, #1146, #927, #1977 ) ) ; +#1315 = LINE ( 'NONE', #816, #2466 ) ; +#1316 = VECTOR ( 'NONE', #1961, 1000.000000000000000 ) ; +#1317 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000000000, 149.9999999999999700, 0.0000000000000000000 ) ) ; +#1318 = EDGE_LOOP ( 'NONE', ( #1191, #1284, #477, #1662 ) ) ; +#1319 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1320 = ORIENTED_EDGE ( 'NONE', *, *, #2550, .T. ) ; +#1321 = CC_DESIGN_SECURITY_CLASSIFICATION ( #1592, ( #2707 ) ) ; +#1322 = ORIENTED_EDGE ( 'NONE', *, *, #836, .F. ) ; +#1323 = EDGE_CURVE ( 'NONE', #1418, #2095, #1137, .T. ) ; +#1324 = ORIENTED_EDGE ( 'NONE', *, *, #1323, .T. ) ; +#1325 = EDGE_LOOP ( 'NONE', ( #2261, #2386, #65, #2103 ) ) ; +#1326 = ORIENTED_EDGE ( 'NONE', *, *, #2282, .F. ) ; +#1327 = EDGE_LOOP ( 'NONE', ( #544, #2031, #245, #35 ) ) ; +#1328 = VERTEX_POINT ( 'NONE', #850 ) ; +#1329 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#1330 = CARTESIAN_POINT ( 'NONE', ( -373.0000000000006800, 87.49999999999991500, 0.0000000000000000000 ) ) ; +#1331 = ADVANCED_FACE ( 'NONE', ( #300 ), #239, .F. ) ; +#1332 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #1842 ) ; +#1333 = CARTESIAN_POINT ( 'NONE', ( 762.5000000000000000, 149.9999999999999700, 18.00000000000000000 ) ) ; +#1334 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #2214 ) ; +#1335 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#1336 = CARTESIAN_POINT ( 'NONE', ( -373.0000000000006800, -5.551115123125782700E-014, 18.00000000000000400 ) ) ; +#1337 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #2449 ) ; +#1338 = CC_DESIGN_SECURITY_CLASSIFICATION ( #2445, ( #1798 ) ) ; +#1339 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1340 = ORIENTED_EDGE ( 'NONE', *, *, #762, .T. ) ; +#1341 = CARTESIAN_POINT ( 'NONE', ( 16.49999999999995700, 16.50000000000001400, 477.0000000000000000 ) ) ; +#1342 = CIRCLE ( 'NONE', #1588, 3.500000000000003100 ) ; +#1343 = LINE ( 'NONE', #1230, #2693 ) ; +#1344 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1345 = ADVANCED_FACE ( 'NONE', ( #687 ), #2287, .F. ) ; +#1346 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1347 = ORIENTED_EDGE ( 'NONE', *, *, #1998, .F. ) ; +#1348 = CARTESIAN_POINT ( 'NONE', ( -1.110223024625156500E-013, 477.0000000000000000, 18.00000000000001400 ) ) ; +#1349 = LINE ( 'NONE', #1643, #436 ) ; +#1350 = EDGE_CURVE ( 'NONE', #1450, #1085, #1887, .T. ) ; +#1351 = EDGE_LOOP ( 'NONE', ( #229, #1665, #1941 ) ) ; +#1352 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#1353 = CARTESIAN_POINT ( 'NONE', ( -6.661338147750939200E-013, 87.49999999999991500, 0.0000000000000000000 ) ) ; +#1354 = VECTOR ( 'NONE', #2069, 1000.000000000000000 ) ; +#1355 = CC_DESIGN_SECURITY_CLASSIFICATION ( #1864, ( #2093 ) ) ; +#1356 = CIRCLE ( 'NONE', #406, 3.500000000000003100 ) ; +#1357 = ORIENTED_EDGE ( 'NONE', *, *, #1350, .T. ) ; +#1358 = AXIS2_PLACEMENT_3D ( 'NONE', #1234, #1878, #1013 ) ; +#1359 = VERTEX_POINT ( 'NONE', #667 ) ; +#1360 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1361 = EDGE_LOOP ( 'NONE', ( #514, #549, #170, #2571 ) ) ; +#1362 = SECURITY_CLASSIFICATION ( '', '', #454 ) ; +#1363 = CARTESIAN_POINT ( 'NONE', ( 374.9999999999993200, -5.551115123125782700E-014, 0.0000000000000000000 ) ) ; +#1364 = ORIENTED_EDGE ( 'NONE', *, *, #2494, .T. ) ; +#1365 = ORIENTED_EDGE ( 'NONE', *, *, #664, .T. ) ; +#1366 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1367 = EDGE_LOOP ( 'NONE', ( #1872, #914, #2583, #403 ) ) ; +#1368 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#1369 =( NAMED_UNIT ( * ) PLANE_ANGLE_UNIT ( ) SI_UNIT ( $, .RADIAN. ) ); +#1370 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#1371 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #1009 ) ; +#1372 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1373 = AXIS2_PLACEMENT_3D ( 'NONE', #870, #2574, #862 ) ; +#1374 = ADVANCED_FACE ( 'NONE', ( #1175 ), #250, .F. ) ; +#1375 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1376 = CIRCLE ( 'NONE', #2312, 2.000000000000001800 ) ; +#1377 = EDGE_CURVE ( 'NONE', #134, #2134, #17, .T. ) ; +#1378 = PRODUCT_DEFINITION_FORMATION_WITH_SPECIFIED_SOURCE ( 'ANY', '', #2311, .NOT_KNOWN. ) ; +#1379 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #2490 ) ; +#1380 = SHAPE_REPRESENTATION_RELATIONSHIP ( 'NONE' , 'NONE' , #2030, #1476 ) ; +#1381 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1382 = CARTESIAN_POINT ( 'NONE', ( 743.9999999999993200, -5.526622187142835700E-014, -0.001000000000001000100 ) ) ; +#1383 = VECTOR ( 'NONE', #257, 1000.000000000000000 ) ; +#1384 = LINE ( 'NONE', #1079, #2392 ) ; +#1385 = EDGE_CURVE ( 'NONE', #1185, #2067, #331, .T. ) ; +#1386 = LINE ( 'NONE', #674, #1251 ) ; +#1387 = ORIENTED_EDGE ( 'NONE', *, *, #1222, .T. ) ; +#1388 = DESIGN_CONTEXT ( 'detailed design', #1417, 'design' ) ; +#1389 = CC_DESIGN_APPROVAL ( #2016, ( #199 ) ) ; +#1390 = VERTEX_POINT ( 'NONE', #1925 ) ; +#1391 = VERTEX_POINT ( 'NONE', #1950 ) ; +#1392 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#1393 =( NAMED_UNIT ( * ) PLANE_ANGLE_UNIT ( ) SI_UNIT ( $, .RADIAN. ) ); +#1394 = ORIENTED_EDGE ( 'NONE', *, *, #1091, .F. ) ; +#1395 = APPROVAL_DATE_TIME ( #556, #1268 ) ; +#1396 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#1397 = APPROVAL_DATE_TIME ( #911, #1910 ) ; +#1398 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000000000, -150.0000000000000300, 18.00000000000000000 ) ) ; +#1399 = DIRECTION ( 'NONE', ( 0.0000000000000000000, -1.000000000000000000, 0.0000000000000000000 ) ) ; +#1400 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#1401 = AXIS2_PLACEMENT_3D ( 'NONE', #1110, #1335, #80 ) ; +#1402 = ORIENTED_EDGE ( 'NONE', *, *, #2263, .T. ) ; +#1403 = CARTESIAN_POINT ( 'NONE', ( 372.9999999999993200, 87.49999999999991500, 0.0000000000000000000 ) ) ; +#1404 = LINE ( 'NONE', #182, #1850 ) ; +#1405 = AXIS2_PLACEMENT_3D ( 'NONE', #1341, #1957, #892 ) ; +#1406 = FACE_BOUND ( 'NONE', #2091, .T. ) ; +#1407 = DIRECTION ( 'NONE', ( -1.000000000000000000, 8.707631565687500900E-016, 0.0000000000000000000 ) ) ; +#1408 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1409 = EDGE_CURVE ( 'NONE', #979, #1063, #814, .T. ) ; +#1410 = AXIS2_PLACEMENT_3D ( 'NONE', #1531, #1319, #2167 ) ; +#1411 = CARTESIAN_POINT ( 'NONE', ( 743.9999999999993200, -87.50000000000002800, 18.00000000000000400 ) ) ; +#1412 = LINE ( 'NONE', #364, #2461 ) ; +#1413 = ORIENTED_EDGE ( 'NONE', *, *, #396, .T. ) ; +#1414 = ORIENTED_EDGE ( 'NONE', *, *, #67, .F. ) ; +#1415 = EDGE_CURVE ( 'NONE', #2618, #864, #2151, .T. ) ; +#1416 = VECTOR ( 'NONE', #2619, 1000.000000000000000 ) ; +#1417 = APPLICATION_CONTEXT ( 'configuration controlled 3d designs of mechanical parts and assemblies' ) ; +#1418 = VERTEX_POINT ( 'NONE', #1126 ) ; +#1419 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 18.00000000000001400 ) ) ; +#1420 = EDGE_LOOP ( 'NONE', ( #1693, #1567, #607, #1413 ) ) ; +#1421 = AXIS2_PLACEMENT_3D ( 'NONE', #482, #473, #879 ) ; +#1422 = VERTEX_POINT ( 'NONE', #515 ) ; +#1423 = ORIENTED_EDGE ( 'NONE', *, *, #555, .T. ) ; +#1424 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000005700, 127.4999999999999400, 18.00000000000000400 ) ) ; +#1425 = DATE_AND_TIME ( #945, #1033 ) ; +#1426 = APPLICATION_CONTEXT ( 'configuration controlled 3d designs of mechanical parts and assemblies' ) ; +#1427 = PRODUCT_DEFINITION ( 'UNKNOWN', '', #1378, #2402 ) ; +#1428 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1429 = APPROVAL_PERSON_ORGANIZATION ( #1297, #2174, #232 ) ; +#1430 = APPROVAL_DATE_TIME ( #115, #2295 ) ; +#1431 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1432 = CARTESIAN_POINT ( 'NONE', ( -373.0000000000000000, 133.4999999999999400, 17.99999999999998600 ) ) ; +#1433 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#1434 = FACE_BOUND ( 'NONE', #1965, .T. ) ; +#1435 = CARTESIAN_POINT ( 'NONE', ( -6.661338147750939200E-013, 87.49999999999991500, 0.0000000000000000000 ) ) ; +#1436 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #1302, #1261, ( #1811 ) ) ; +#1437 = DIRECTION ( 'NONE', ( -1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1438 = FACE_OUTER_BOUND ( 'NONE', #348, .T. ) ; +#1439 = APPROVAL_ROLE ( '' ) ; +#1440 = CIRCLE ( 'NONE', #464, 2.000000000000001800 ) ; +#1441 = AXIS2_PLACEMENT_3D ( 'NONE', #1360, #2635, #2624 ) ; +#1442 = DIRECTION ( 'NONE', ( -2.327511582023389100E-016, 1.000000000000000000, 0.0000000000000000000 ) ) ; +#1443 = CONICAL_SURFACE ( 'NONE', #2442, 3.500000000000003100, 1.029744258676652500 ) ; +#1444 = CIRCLE ( 'NONE', #1373, 2.000000000000001800 ) ; +#1445 = EDGE_LOOP ( 'NONE', ( #1773, #1324, #1937, #2678 ) ) ; +#1446 = CARTESIAN_POINT ( 'NONE', ( -744.0000000000006800, 87.49999999999991500, 18.00000000000000400 ) ) ; +#1447 = LINE ( 'NONE', #957, #765 ) ; +#1448 = EDGE_CURVE ( 'NONE', #1540, #971, #1304, .T. ) ; +#1449 = APPROVAL_ROLE ( '' ) ; +#1450 = VERTEX_POINT ( 'NONE', #1136 ) ; +#1451 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #1171, #2064, ( #2093 ) ) ; +#1452 = EDGE_LOOP ( 'NONE', ( #1601, #29, #708, #1273 ) ) ; +#1453 = CARTESIAN_POINT ( 'NONE', ( 762.5000000000000000, -150.0000000000000300, 0.0000000000000000000 ) ) ; +#1454 = AXIS2_PLACEMENT_3D ( 'NONE', #236, #648, #1290 ) ; +#1455 = ORIENTED_EDGE ( 'NONE', *, *, #488, .T. ) ; +#1456 = CARTESIAN_POINT ( 'NONE', ( -16.49999999999995700, -16.50000000000000000, 0.0000000000000000000 ) ) ; +#1457 = CC_DESIGN_APPROVAL ( #1243, ( #1724 ) ) ; +#1458 = EDGE_CURVE ( 'NONE', #2668, #309, #782, .T. ) ; +#1459 = CARTESIAN_POINT ( 'NONE', ( 372.9999999999993200, -5.551115123125782700E-014, 0.0000000000000000000 ) ) ; +#1460 = MECHANICAL_CONTEXT ( 'NONE', #1426, 'mechanical' ) ; +#1461 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#1462 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #2578 ) ; +#1463 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#1464 = DIRECTION ( 'NONE', ( -0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1465 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#1466 = ORIENTED_EDGE ( 'NONE', *, *, #451, .T. ) ; +#1467 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#1468 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#1469 = DATE_AND_TIME ( #361, #2289 ) ; +#1470 = PERSON_AND_ORGANIZATION_ROLE ( 'classification_officer' ) ; +#1471 = LINE ( 'NONE', #1238, #2222 ) ; +#1472 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1473 = APPROVAL ( #876, 'UNKNOWN' ) ; +#1474 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#1475 = VECTOR ( 'NONE', #1976, 1000.000000000000000 ) ; +#1476 = ADVANCED_BREP_SHAPE_REPRESENTATION ( '', ( #108, #750 ), #2462 ) ; +#1477 = ORIENTED_EDGE ( 'NONE', *, *, #123, .T. ) ; +#1478 = LINE ( 'NONE', #1541, #369 ) ; +#1479 = APPLICATION_CONTEXT ( 'configuration controlled 3d designs of mechanical parts and assemblies' ) ; +#1480 = ORIENTED_EDGE ( 'NONE', *, *, #1849, .F. ) ; +#1481 = LINE ( 'NONE', #2098, #1859 ) ; +#1482 = CONICAL_SURFACE ( 'NONE', #1401, 3.500000000000003100, 1.029744258676652500 ) ; +#1483 = ORIENTED_EDGE ( 'NONE', *, *, #1845, .F. ) ; +#1484 = CARTESIAN_POINT ( 'NONE', ( -16.49999999999995700, -16.50000000000000000, 477.0000000000000000 ) ) ; +#1485 = EDGE_LOOP ( 'NONE', ( #2328, #157, #1660, #310 ) ) ; +#1486 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#1487 = AXIS2_PLACEMENT_3D ( 'NONE', #726, #2180, #2611 ) ; +#1488 = SECURITY_CLASSIFICATION_LEVEL ( 'unclassified' ) ; +#1489 = EDGE_LOOP ( 'NONE', ( #2378, #1120, #99, #458 ) ) ; +#1490 = PRODUCT_RELATED_PRODUCT_CATEGORY ( 'detail', '', ( #2329 ) ) ; +#1491 = CARTESIAN_POINT ( 'NONE', ( 374.9999999999993200, -5.551115123125782700E-014, -0.001000000000001000100 ) ) ; +#1492 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, -16.50000000000000000, 258.4999999999999400 ) ) ; +#1493 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#1494 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 5.750000000000005300, 349.5000000000000600 ) ) ; +#1495 = PERSON_AND_ORGANIZATION_ROLE ( 'classification_officer' ) ; +#1496 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #1233 ) ; +#1497 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 7.853012166596451800, 437.0000000000000000 ) ) ; +#1498 = FACE_OUTER_BOUND ( 'NONE', #1159, .T. ) ; +#1499 = LINE ( 'NONE', #1186, #1921 ) ; +#1500 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1501 = SECURITY_CLASSIFICATION_LEVEL ( 'unclassified' ) ; +#1502 = AXIS2_PLACEMENT_3D ( 'NONE', #2014, #1178, #1381 ) ; +#1503 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#1504 = SHAPE_REPRESENTATION_RELATIONSHIP ( 'NONE' , 'NONE' , #2011, #1307 ) ; +#1505 = MANIFOLD_SOLID_BREP ( 'Schnitt-Linear austragen1', #2638 ) ; +#1506 = ORIENTED_EDGE ( 'NONE', *, *, #1825, .T. ) ; +#1507 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1508 = EDGE_CURVE ( 'NONE', #100, #1748, #146, .T. ) ; +#1509 = VECTOR ( 'NONE', #1474, 1000.000000000000000 ) ; +#1510 = FACE_BOUND ( 'NONE', #1, .T. ) ; +#1511 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#1512 =( GEOMETRIC_REPRESENTATION_CONTEXT ( 3 ) GLOBAL_UNCERTAINTY_ASSIGNED_CONTEXT ( ( #2572 ) ) GLOBAL_UNIT_ASSIGNED_CONTEXT ( ( #597, #1629, #982 ) ) REPRESENTATION_CONTEXT ( 'NONE', 'WORKASPACE' ) ); +#1513 = FACE_BOUND ( 'NONE', #869, .T. ) ; +#1514 = PLANE ( 'NONE', #1228 ) ; +#1515 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 477.0000000000000000 ) ) ; +#1516 = VERTEX_POINT ( 'NONE', #2038 ) ; +#1517 = ADVANCED_FACE ( 'NONE', ( #724 ), #173, .F. ) ; +#1518 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1519 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1520 = AXIS2_PLACEMENT_3D ( 'NONE', #2544, #431, #1468 ) ; +#1521 =( REPRESENTATION_RELATIONSHIP ('NONE','NONE', #1116, #2020 ) REPRESENTATION_RELATIONSHIP_WITH_TRANSFORMATION ( #192 )SHAPE_REPRESENTATION_RELATIONSHIP( ) ); +#1522 = CONTEXT_DEPENDENT_SHAPE_REPRESENTATION ( #651, #258 ) ; +#1523 = APPROVAL ( #1702, 'UNKNOWN' ) ; +#1524 = PERSON_AND_ORGANIZATION ( #1098, #37 ) ; +#1525 = EDGE_CURVE ( 'NONE', #503, #1008, #84, .T. ) ; +#1526 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1527 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#1528 = ORIENTED_EDGE ( 'NONE', *, *, #1270, .F. ) ; +#1529 = APPROVAL_PERSON_ORGANIZATION ( #1173, #606, #1202 ) ; +#1530 = ADVANCED_FACE ( 'NONE', ( #1649 ), #2220, .F. ) ; +#1531 = CARTESIAN_POINT ( 'NONE', ( 745.9999999999993200, 87.49999999999991500, -0.001000000000001000100 ) ) ; +#1532 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1533 = EDGE_CURVE ( 'NONE', #2653, #1669, #2423, .T. ) ; +#1534 = FACE_OUTER_BOUND ( 'NONE', #1485, .T. ) ; +#1535 = ORIENTED_EDGE ( 'NONE', *, *, #2018, .T. ) ; +#1536 = LINE ( 'NONE', #1282, #1215 ) ; +#1537 = CYLINDRICAL_SURFACE ( 'NONE', #692, 2.000000000000001800 ) ; +#1538 = ORIENTED_EDGE ( 'NONE', *, *, #2435, .T. ) ; +#1539 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#1540 = VERTEX_POINT ( 'NONE', #756 ) ; +#1541 = CARTESIAN_POINT ( 'NONE', ( -16.49999999999995700, 16.50000000000001400, 0.0000000000000000000 ) ) ; +#1542 = LINE ( 'NONE', #2476, #893 ) ; +#1543 = LINE ( 'NONE', #2200, #1732 ) ; +#1544 = ORIENTED_EDGE ( 'NONE', *, *, #1181, .T. ) ; +#1545 = EDGE_CURVE ( 'NONE', #1193, #100, #754, .T. ) ; +#1546 = ORIENTED_EDGE ( 'NONE', *, *, #2356, .F. ) ; +#1547 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000005700, -127.5000000000000600, 0.0000000000000000000 ) ) ; +#1548 = VERTEX_POINT ( 'NONE', #767 ) ; +#1549 = ORIENTED_EDGE ( 'NONE', *, *, #684, .F. ) ; +#1550 = PERSON ( 'NAUO-PER6', 'UNSPECIFIED', 'UNSPECIFIED', ('UNSPECIFIED'), ('UNSPECIFIED'), ('UNSPECIFIED') ) ; +#1551 = EDGE_CURVE ( 'NONE', #1117, #248, #1342, .T. ) ; +#1552 = PLANE ( 'NONE', #2045 ) ; +#1553 = DIRECTION ( 'NONE', ( 0.0000000000000000000, -1.000000000000000000, 0.0000000000000000000 ) ) ; +#1554 = AXIS2_PLACEMENT_3D ( 'NONE', #352, #1782, #2451 ) ; +#1555 = ADVANCED_FACE ( 'NONE', ( #46 ), #2685, .F. ) ; +#1556 = DATE_AND_TIME ( #748, #2481 ) ; +#1557 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1558 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1559 = ORIENTED_EDGE ( 'NONE', *, *, #809, .F. ) ; +#1560 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#1561 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#1562 = SECURITY_CLASSIFICATION ( '', '', #1488 ) ; +#1563 = CIRCLE ( 'NONE', #498, 2.000000000000001800 ) ; +#1564 = DIRECTION ( 'NONE', ( 1.049727191138617500E-016, -0.5150380749100558200, 0.8571673007021113300 ) ) ; +#1565 = CARTESIAN_POINT ( 'NONE', ( 372.9999999999993200, -5.551115123125782700E-014, 18.00000000000000400 ) ) ; +#1566 = ADVANCED_FACE ( 'NONE', ( #654 ), #205, .F. ) ; +#1567 = ORIENTED_EDGE ( 'NONE', *, *, #673, .F. ) ; +#1568 = VECTOR ( 'NONE', #2240, 1000.000000000000000 ) ; +#1569 = AXIS2_PLACEMENT_3D ( 'NONE', #818, #419, #2308 ) ; +#1570 = ORIENTED_EDGE ( 'NONE', *, *, #1947, .F. ) ; +#1571 = CIRCLE ( 'NONE', #1906, 2.000000000000001800 ) ; +#1572 = APPROVAL ( #1646, 'UNSPECIFIED' ) ; +#1573 = CYLINDRICAL_SURFACE ( 'NONE', #268, 2.000000000000001800 ) ; +#1574 = DIRECTION ( 'NONE', ( -8.707631565687500900E-016, -1.000000000000000000, 0.0000000000000000000 ) ) ; +#1575 = CIRCLE ( 'NONE', #1065, 2.000000000000001800 ) ; +#1576 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #1781, #1720, ( #1362 ) ) ; +#1577 = VERTEX_POINT ( 'NONE', #1220 ) ; +#1578 = ORIENTED_EDGE ( 'NONE', *, *, #1229, .T. ) ; +#1579 = ORIENTED_EDGE ( 'NONE', *, *, #531, .T. ) ; +#1580 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, -16.50000000000000000, 349.5000000000000600 ) ) ; +#1581 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1582 = EDGE_CURVE ( 'NONE', #1193, #1800, #860, .T. ) ; +#1583 = PERSON_AND_ORGANIZATION ( #669, #2140 ) ; +#1584 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#1585 = PRODUCT_RELATED_PRODUCT_CATEGORY ( 'detail', '', ( #253 ) ) ; +#1586 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1587 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#1588 = AXIS2_PLACEMENT_3D ( 'NONE', #7, #177, #1835 ) ; +#1589 = ORIENTED_EDGE ( 'NONE', *, *, #970, .T. ) ; +#1590 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#1591 = CARTESIAN_POINT ( 'NONE', ( -371.0000000000006800, -5.551115123125782700E-014, 18.00000000000000400 ) ) ; +#1592 = SECURITY_CLASSIFICATION ( '', '', #857 ) ; +#1593 = LINE ( 'NONE', #1076, #2249 ) ; +#1594 = VECTOR ( 'NONE', #552, 1000.000000000000000 ) ; +#1595 = CARTESIAN_POINT ( 'NONE', ( 16.49999999999995700, -16.50000000000000000, 477.0000000000000000 ) ) ; +#1596 = ORIENTED_EDGE ( 'NONE', *, *, #389, .F. ) ; +#1597 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1598 = FACE_OUTER_BOUND ( 'NONE', #1172, .T. ) ; +#1599 = FACE_OUTER_BOUND ( 'NONE', #284, .T. ) ; +#1600 = ORIENTED_EDGE ( 'NONE', *, *, #1323, .F. ) ; +#1601 = ORIENTED_EDGE ( 'NONE', *, *, #2282, .T. ) ; +#1602 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1603 = AXIS2_PLACEMENT_3D ( 'NONE', #358, #342, #2005 ) ; +#1604 = FACE_OUTER_BOUND ( 'NONE', #2369, .T. ) ; +#1605 = CC_DESIGN_APPROVAL ( #1473, ( #1054 ) ) ; +#1606 = VERTEX_POINT ( 'NONE', #386 ) ; +#1607 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 5.750000000000005300, 346.0000000000000600 ) ) ; +#1608 = DATE_TIME_ROLE ( 'classification_date' ) ; +#1609 = VERTEX_POINT ( 'NONE', #1244 ) ; +#1610 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #1584 ) ; +#1611 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1612 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#1613 = AXIS2_PLACEMENT_3D ( 'NONE', #1143, #964, #2629 ) ; +#1614 = ORIENTED_EDGE ( 'NONE', *, *, #1640, .F. ) ; +#1615 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#1616 = DATE_AND_TIME ( #2586, #530 ) ; +#1617 = CARTESIAN_POINT ( 'NONE', ( -6.661338147750939200E-013, 87.49999999999991500, -0.001000000000001000100 ) ) ; +#1618 = AXIS2_PLACEMENT_3D ( 'NONE', #1348, #2270, #1442 ) ; +#1619 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#1620 = FACE_OUTER_BOUND ( 'NONE', #1452, .T. ) ; +#1621 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1622 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1623 = APPROVAL ( #264, 'UNKNOWN' ) ; +#1624 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1625 = CIRCLE ( 'NONE', #78, 2.000000000000001800 ) ; +#1626 = ORIENTED_EDGE ( 'NONE', *, *, #1968, .F. ) ; +#1627 = CIRCLE ( 'NONE', #609, 3.500000000000003100 ) ; +#1628 = CARTESIAN_POINT ( 'NONE', ( -746.0000000000006800, 87.49999999999991500, -0.001000000000001000100 ) ) ; +#1629 =( NAMED_UNIT ( * ) PLANE_ANGLE_UNIT ( ) SI_UNIT ( $, .RADIAN. ) ); +#1630 = ORIENTED_EDGE ( 'NONE', *, *, #1508, .F. ) ; +#1631 = VECTOR ( 'NONE', #915, 1000.000000000000000 ) ; +#1632 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, -16.50000000000000000, 437.0000000000000000 ) ) ; +#1633 = AXIS2_PLACEMENT_3D ( 'NONE', #931, #528, #919 ) ; +#1634 = PRODUCT_DEFINITION_SHAPE ( 'NONE', 'NONE', #2705 ) ; +#1635 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#1636 = PRODUCT_DEFINITION_SHAPE ( 'NONE', 'NONE', #74 ) ; +#1637 = ORIENTED_EDGE ( 'NONE', *, *, #2647, .F. ) ; +#1638 = ADVANCED_FACE ( 'NONE', ( #2561 ), #1443, .F. ) ; +#1639 = EDGE_LOOP ( 'NONE', ( #944, #383, #2175, #1387 ) ) ; +#1640 = EDGE_CURVE ( 'NONE', #1826, #932, #312, .T. ) ; +#1641 = PERSON_AND_ORGANIZATION_ROLE ( 'creator' ) ; +#1642 =( GEOMETRIC_REPRESENTATION_CONTEXT ( 3 ) GLOBAL_UNCERTAINTY_ASSIGNED_CONTEXT ( ( #378 ) ) GLOBAL_UNIT_ASSIGNED_CONTEXT ( ( #1783, #1393, #2401 ) ) REPRESENTATION_CONTEXT ( 'NONE', 'WORKASPACE' ) ); +#1643 = CARTESIAN_POINT ( 'NONE', ( 370.9999999999993200, -87.50000000000002800, -0.001000000000001000100 ) ) ; +#1644 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#1645 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#1646 = APPROVAL_STATUS ( 'not_yet_approved' ) ; +#1647 = ORIENTED_EDGE ( 'NONE', *, *, #2079, .T. ) ; +#1648 = DATE_AND_TIME ( #1467, #2148 ) ; +#1649 = FACE_OUTER_BOUND ( 'NONE', #1314, .T. ) ; +#1650 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1651 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #1069, #636, ( #74 ) ) ; +#1652 = CARTESIAN_POINT ( 'NONE', ( 745.9999999999993200, -87.50000000000002800, -0.001000000000001000100 ) ) ; +#1653 = EDGE_CURVE ( 'NONE', #2000, #248, #1542, .T. ) ; +#1654 = SHAPE_REPRESENTATION_RELATIONSHIP ( 'NONE' , 'NONE' , #2020, #1822 ) ; +#1655 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1656 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#1657 = APPLICATION_PROTOCOL_DEFINITION ( 'international standard', 'config_control_design', 1994, #1479 ) ; +#1658 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1659 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#1660 = ORIENTED_EDGE ( 'NONE', *, *, #1533, .F. ) ; +#1661 = VECTOR ( 'NONE', #89, 1000.000000000000000 ) ; +#1662 = ORIENTED_EDGE ( 'NONE', *, *, #370, .F. ) ; +#1663 = EDGE_CURVE ( 'NONE', #1359, #1907, #1021, .T. ) ; +#1664 = APPROVAL_ROLE ( '' ) ; +#1665 = ORIENTED_EDGE ( 'NONE', *, *, #421, .T. ) ; +#1666 = ORIENTED_EDGE ( 'NONE', *, *, #998, .F. ) ; +#1667 = CARTESIAN_POINT ( 'NONE', ( -746.0000000000006800, -87.50000000000002800, 0.0000000000000000000 ) ) ; +#1668 = AXIS2_PLACEMENT_3D ( 'NONE', #2281, #1841, #1235 ) ; +#1669 = VERTEX_POINT ( 'NONE', #1456 ) ; +#1670 = DIRECTION ( 'NONE', ( 8.707631565687501900E-016, 1.000000000000000000, 0.0000000000000000000 ) ) ; +#1671 = PERSON_AND_ORGANIZATION ( #1288, #554 ) ; +#1672 = EDGE_CURVE ( 'NONE', #971, #1016, #181, .T. ) ; +#1673 = AXIS2_PLACEMENT_3D ( 'NONE', #2006, #753, #2193 ) ; +#1674 = APPROVAL_ROLE ( '' ) ; +#1675 = APPROVAL_PERSON_ORGANIZATION ( #1524, #1473, #1710 ) ; +#1676 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1677 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#1678 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#1679 = VERTEX_POINT ( 'NONE', #193 ) ; +#1680 = EDGE_CURVE ( 'NONE', #309, #279, #2601, .T. ) ; +#1681 = LINE ( 'NONE', #1044, #1789 ) ; +#1682 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 5.750000000000005300, 349.5000000000000600 ) ) ; +#1683 = CARTESIAN_POINT ( 'NONE', ( -748.0000000000006800, -87.50000000000002800, 18.00000000000000400 ) ) ; +#1684 = APPROVAL_ROLE ( '' ) ; +#1685 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#1686 = PERSON ( 'UNSPECIFIED', 'UNSPECIFIED', 'UNSPECIFIED', ('UNSPECIFIED'), ('UNSPECIFIED'), ('UNSPECIFIED') ) ; +#1687 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1688 = CARTESIAN_POINT ( 'NONE', ( 745.9999999999993200, -87.50000000000002800, 0.0000000000000000000 ) ) ; +#1689 = CIRCLE ( 'NONE', #2210, 2.000000000000001800 ) ; +#1690 = CARTESIAN_POINT ( 'NONE', ( 747.9999999999993200, 87.49999999999991500, 0.0000000000000000000 ) ) ; +#1691 = ORIENTED_EDGE ( 'NONE', *, *, #451, .F. ) ; +#1692 = DATE_TIME_ROLE ( 'classification_date' ) ; +#1693 = ORIENTED_EDGE ( 'NONE', *, *, #475, .T. ) ; +#1694 = VECTOR ( 'NONE', #1254, 1000.000000000000000 ) ; +#1695 = CIRCLE ( 'NONE', #1154, 2.000000000000001800 ) ; +#1696 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1697 = ORIENTED_EDGE ( 'NONE', *, *, #2100, .F. ) ; +#1698 = FACE_OUTER_BOUND ( 'NONE', #1836, .T. ) ; +#1699 = CARTESIAN_POINT ( 'NONE', ( 4.286263797015731700E-016, -16.50000000000000000, 440.5000000000000000 ) ) ; +#1700 = CARTESIAN_POINT ( 'NONE', ( -371.0000000000006800, 87.49999999999991500, 0.0000000000000000000 ) ) ; +#1701 = AXIS2_PLACEMENT_3D ( 'NONE', #2331, #47, #1905 ) ; +#1702 = APPROVAL_STATUS ( 'not_yet_approved' ) ; +#1703 = EDGE_LOOP ( 'NONE', ( #766, #375 ) ) ; +#1704 = VERTEX_POINT ( 'NONE', #1868 ) ; +#1705 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #2075, #2293, ( #2191 ) ) ; +#1706 = CARTESIAN_POINT ( 'NONE', ( -2.000000000000666100, -5.526622187142835700E-014, -0.001000000000001000100 ) ) ; +#1707 = APPROVAL ( #1066, 'UNKNOWN' ) ; +#1708 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #1461 ) ; +#1709 = CARTESIAN_POINT ( 'NONE', ( -371.0000000000006800, 87.49999999999991500, 18.00000000000000400 ) ) ; +#1710 = APPROVAL_ROLE ( '' ) ; +#1711 = ADVANCED_FACE ( 'NONE', ( #541 ), #471, .F. ) ; +#1712 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#1713 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#1714 = VERTEX_POINT ( 'NONE', #2696 ) ; +#1715 = PERSON ( 'NAUO-PER8', 'UNSPECIFIED', 'UNSPECIFIED', ('UNSPECIFIED'), ('UNSPECIFIED'), ('UNSPECIFIED') ) ; +#1716 = CARTESIAN_POINT ( 'NONE', ( 370.9999999999993200, 87.49999999999991500, 0.0000000000000000000 ) ) ; +#1717 = VECTOR ( 'NONE', #1939, 1000.000000000000000 ) ; +#1718 = APPROVAL_DATE_TIME ( #1305, #1523 ) ; +#1719 = EDGE_CURVE ( 'NONE', #930, #1390, #1315, .T. ) ; +#1720 = PERSON_AND_ORGANIZATION_ROLE ( 'classification_officer' ) ; +#1721 = PRODUCT_DEFINITION ( 'UNKNOWN', '', #1798, #206 ) ; +#1722 = ADVANCED_FACE ( 'NONE', ( #995 ), #2258, .F. ) ; +#1723 = ORIENTED_EDGE ( 'NONE', *, *, #2007, .F. ) ; +#1724 = SECURITY_CLASSIFICATION ( '', '', #1911 ) ; +#1725 = EDGE_CURVE ( 'NONE', #1800, #79, #792, .T. ) ; +#1726 = FACE_OUTER_BOUND ( 'NONE', #2464, .T. ) ; +#1727 = AXIS2_PLACEMENT_3D ( 'NONE', #86, #1111, #1097 ) ; +#1728 = FACE_OUTER_BOUND ( 'NONE', #1805, .T. ) ; +#1729 = VECTOR ( 'NONE', #1279, 1000.000000000000000 ) ; +#1730 = VERTEX_POINT ( 'NONE', #1446 ) ; +#1731 = AXIS2_PLACEMENT_3D ( 'NONE', #601, #163, #1223 ) ; +#1732 = VECTOR ( 'NONE', #1564, 1000.000000000000000 ) ; +#1733 = ORIENTED_EDGE ( 'NONE', *, *, #1845, .T. ) ; +#1734 = CARTESIAN_POINT ( 'NONE', ( 745.9999999999993200, -5.551115123125782700E-014, -0.001000000000001000100 ) ) ; +#1735 = MANIFOLD_SOLID_BREP ( '7.0 (7) Durchmesser Bohrung1', #15 ) ; +#1736 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#1737 = ORIENTED_EDGE ( 'NONE', *, *, #107, .T. ) ; +#1738 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1739 = VERTEX_POINT ( 'NONE', #1492 ) ; +#1740 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1741 = AXIS2_PLACEMENT_3D ( 'NONE', #256, #1696, #2112 ) ; +#1742 = ADVANCED_FACE ( 'NONE', ( #2403 ), #247, .F. ) ; +#1743 = CC_DESIGN_DATE_AND_TIME_ASSIGNMENT ( #873, #1876, ( #2445 ) ) ; +#1744 = DIRECTION ( 'NONE', ( 0.0000000000000000000, -0.0000000000000000000, 1.000000000000000000 ) ) ; +#1745 = ITEM_DEFINED_TRANSFORMATION ( 'NONE', 'NONE', #1731, #750 ) ; +#1746 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, -16.50000000000000000, 433.5000000000000000 ) ) ; +#1747 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#1748 = VERTEX_POINT ( 'NONE', #882 ) ; +#1749 = APPROVAL_DATE_TIME ( #171, #1174 ) ; +#1750 = CYLINDRICAL_SURFACE ( 'NONE', #2256, 3.500000000000003100 ) ; +#1751 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1752 = CARTESIAN_POINT ( 'NONE', ( 747.9999999999993200, 87.49999999999991500, 18.00000000000000400 ) ) ; +#1753 = FACE_BOUND ( 'NONE', #2021, .T. ) ; +#1754 = ADVANCED_FACE ( 'NONE', ( #1928 ), #440, .F. ) ; +#1755 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1756 = EDGE_CURVE ( 'NONE', #1030, #1669, #2330, .T. ) ; +#1757 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1758 = CIRCLE ( 'NONE', #1673, 2.000000000000001800 ) ; +#1759 = CC_DESIGN_DATE_AND_TIME_ASSIGNMENT ( #1816, #2305, ( #709 ) ) ; +#1760 = ORIENTED_EDGE ( 'NONE', *, *, #2302, .T. ) ; +#1761 = AXIS2_PLACEMENT_3D ( 'NONE', #1435, #2057, #1227 ) ; +#1762 = LINE ( 'NONE', #2683, #966 ) ; +#1763 = CARTESIAN_POINT ( 'NONE', ( 762.5000000000000000, 149.9999999999999700, 18.00000000000000000 ) ) ; +#1764 = ORIENTED_EDGE ( 'NONE', *, *, #1102, .T. ) ; +#1765 =( NAMED_UNIT ( * ) SI_UNIT ( $, .STERADIAN. ) SOLID_ANGLE_UNIT ( ) ); +#1766 = VECTOR ( 'NONE', #677, 1000.000000000000000 ) ; +#1767 = CC_DESIGN_APPROVAL ( #1268, ( #295 ) ) ; +#1768 = CARTESIAN_POINT ( 'NONE', ( 745.9999999999993200, 87.49999999999991500, 0.0000000000000000000 ) ) ; +#1769 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000005700, 127.4999999999999400, 0.0000000000000000000 ) ) ; +#1770 = VERTEX_POINT ( 'NONE', #2511 ) ; +#1771 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1772 = ADVANCED_FACE ( 'NONE', ( #2033 ), #824, .F. ) ; +#1773 = ORIENTED_EDGE ( 'NONE', *, *, #290, .F. ) ; +#1774 = PLANE ( 'NONE', #255 ) ; +#1775 =( LENGTH_UNIT ( ) NAMED_UNIT ( * ) SI_UNIT ( .MILLI., .METRE. ) ); +#1776 = VERTEX_POINT ( 'NONE', #1497 ) ; +#1777 = EDGE_CURVE ( 'NONE', #2634, #2653, #277, .T. ) ; +#1778 = DIRECTION ( 'NONE', ( 0.0000000000000000000, -0.5150380749100558200, -0.8571673007021113300 ) ) ; +#1779 = AXIS2_PLACEMENT_3D ( 'NONE', #835, #2545, #231 ) ; +#1780 = DATE_AND_TIME ( #2313, #780 ) ; +#1781 = PERSON_AND_ORGANIZATION ( #1550, #1004 ) ; +#1782 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1783 =( LENGTH_UNIT ( ) NAMED_UNIT ( * ) SI_UNIT ( .MILLI., .METRE. ) ); +#1784 = DATE_AND_TIME ( #1846, #76 ) ; +#1785 = EDGE_CURVE ( 'NONE', #1391, #1185, #2669, .T. ) ; +#1786 = AXIS2_PLACEMENT_3D ( 'NONE', #272, #1713, #888 ) ; +#1787 = ORIENTED_EDGE ( 'NONE', *, *, #2115, .F. ) ; +#1788 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #430, #612, ( #2311 ) ) ; +#1789 = VECTOR ( 'NONE', #42, 1000.000000000000000 ) ; +#1790 = DIRECTION ( 'NONE', ( -2.102695122396129700E-016, 1.000000000000000000, -0.0000000000000000000 ) ) ; +#1791 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#1792 = APPROVAL_PERSON_ORGANIZATION ( #2250, #1243, #1901 ) ; +#1793 = VECTOR ( 'NONE', #121, 1000.000000000000000 ) ; +#1794 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, -16.50000000000000000, 261.9999999999999400 ) ) ; +#1795 = AXIS2_PLACEMENT_3D ( 'NONE', #68, #1740, #489 ) ; +#1796 = ORIENTED_EDGE ( 'NONE', *, *, #2133, .F. ) ; +#1797 = CARTESIAN_POINT ( 'NONE', ( -373.0000000000006800, 87.49999999999991500, -0.001000000000001000100 ) ) ; +#1798 = PRODUCT_DEFINITION_FORMATION_WITH_SPECIFIED_SOURCE ( 'ANY', '', #1263, .NOT_KNOWN. ) ; +#1799 = LINE ( 'NONE', #1706, #849 ) ; +#1800 = VERTEX_POINT ( 'NONE', #1267 ) ; +#1801 = EDGE_LOOP ( 'NONE', ( #587, #2227, #2147, #2296 ) ) ; +#1802 = CARTESIAN_POINT ( 'NONE', ( -373.0000000000006800, 87.49999999999991500, -0.001000000000001000100 ) ) ; +#1803 = ORIENTED_EDGE ( 'NONE', *, *, #2007, .T. ) ; +#1804 = ORIENTED_EDGE ( 'NONE', *, *, #488, .F. ) ; +#1805 = EDGE_LOOP ( 'NONE', ( #1423, #2239, #2375, #902 ) ) ; +#1806 = ORIENTED_EDGE ( 'NONE', *, *, #673, .T. ) ; +#1807 = ORIENTED_EDGE ( 'NONE', *, *, #2577, .F. ) ; +#1808 = ORIENTED_EDGE ( 'NONE', *, *, #2689, .F. ) ; +#1809 = EDGE_CURVE ( 'NONE', #28, #855, #1481, .T. ) ; +#1810 = CARTESIAN_POINT ( 'NONE', ( -371.0000000000006800, -5.551115123125782700E-014, -0.001000000000001000100 ) ) ; +#1811 = PRODUCT_DEFINITION ( 'UNKNOWN', '', #2093, #1388 ) ; +#1812 = DATE_AND_TIME ( #1198, #1881 ) ; +#1813 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1814 = AXIS2_PLACEMENT_3D ( 'NONE', #1099, #1122, #1738 ) ; +#1815 = ORIENTED_EDGE ( 'NONE', *, *, #998, .T. ) ; +#1816 = DATE_AND_TIME ( #1615, #1135 ) ; +#1817 = PRODUCT_DEFINITION_SHAPE ( 'NONE', 'NONE', #2712 ) ; +#1818 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1819 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1820 = EDGE_CURVE ( 'NONE', #934, #2216, #1627, .T. ) ; +#1821 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#1822 = ADVANCED_BREP_SHAPE_REPRESENTATION ( '', ( #1735, #750 ), #2608 ) ; +#1823 = CYLINDRICAL_SURFACE ( 'NONE', #2058, 2.000000000000001800 ) ; +#1824 = PLANE ( 'NONE', #2695 ) ; +#1825 = EDGE_CURVE ( 'NONE', #2166, #866, #933, .T. ) ; +#1826 = VERTEX_POINT ( 'NONE', #219 ) ; +#1827 = MECHANICAL_CONTEXT ( 'NONE', #1012, 'mechanical' ) ; +#1828 = CIRCLE ( 'NONE', #1786, 3.500000000000003100 ) ; +#1829 = VERTEX_POINT ( 'NONE', #656 ) ; +#1830 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1831 = AXIS2_PLACEMENT_3D ( 'NONE', #1068, #2538, #1096 ) ; +#1832 = CIRCLE ( 'NONE', #160, 2.000000000000000400 ) ; +#1833 = FACE_BOUND ( 'NONE', #660, .T. ) ; +#1834 = ORIENTED_EDGE ( 'NONE', *, *, #2176, .T. ) ; +#1835 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#1836 = EDGE_LOOP ( 'NONE', ( #1257, #1863, #585 ) ) ; +#1837 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#1838 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1839 = ORIENTED_EDGE ( 'NONE', *, *, #2042, .F. ) ; +#1840 = ORIENTED_EDGE ( 'NONE', *, *, #1551, .F. ) ; +#1841 = DIRECTION ( 'NONE', ( 1.000000000000000000, 2.102695122396129700E-016, -0.0000000000000000000 ) ) ; +#1842 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#1843 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1844 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#1845 = EDGE_CURVE ( 'NONE', #987, #1548, #1832, .T. ) ; +#1846 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#1847 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #2513, #2505, ( #2445 ) ) ; +#1848 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#1849 = EDGE_CURVE ( 'NONE', #321, #855, #1218, .T. ) ; +#1850 = VECTOR ( 'NONE', #2304, 1000.000000000000000 ) ; +#1851 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #1821 ) ; +#1852 = CARTESIAN_POINT ( 'NONE', ( 4.286263797015724300E-016, -16.50000000000000000, 265.4999999999999400 ) ) ; +#1853 = APPROVAL_STATUS ( 'not_yet_approved' ) ; +#1854 = CC_DESIGN_DATE_AND_TIME_ASSIGNMENT ( #166, #2327, ( #2428 ) ) ; +#1855 = CARTESIAN_POINT ( 'NONE', ( 4.286263797015731700E-016, -16.50000000000000000, 265.4999999999999400 ) ) ; +#1856 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#1857 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000005700, -127.5000000000000600, 18.00000000000000400 ) ) ; +#1858 = ORIENTED_EDGE ( 'NONE', *, *, #1043, .T. ) ; +#1859 = VECTOR ( 'NONE', #1670, 1000.000000000000000 ) ; +#1860 = EDGE_CURVE ( 'NONE', #1390, #789, #2431, .T. ) ; +#1861 = FACE_BOUND ( 'NONE', #868, .T. ) ; +#1862 = PERSON_AND_ORGANIZATION_ROLE ( 'design_owner' ) ; +#1863 = ORIENTED_EDGE ( 'NONE', *, *, #1663, .T. ) ; +#1864 = SECURITY_CLASSIFICATION ( '', '', #1272 ) ; +#1865 = CIRCLE ( 'NONE', #1204, 2.000000000000001800 ) ; +#1866 = ORIENTED_EDGE ( 'NONE', *, *, #357, .F. ) ; +#1867 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1868 = CARTESIAN_POINT ( 'NONE', ( 1.999999999999333900, -5.551115123125782700E-014, 18.00000000000000400 ) ) ; +#1869 = ORIENTED_EDGE ( 'NONE', *, *, #1415, .T. ) ; +#1870 = EDGE_LOOP ( 'NONE', ( #30, #858, #2099, #764 ) ) ; +#1871 = SECURITY_CLASSIFICATION ( '', '', #2359 ) ; +#1872 = ORIENTED_EDGE ( 'NONE', *, *, #2587, .T. ) ; +#1873 = EDGE_CURVE ( 'NONE', #934, #534, #1086, .T. ) ; +#1874 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1875 = AXIS2_PLACEMENT_3D ( 'NONE', #727, #700, #2382 ) ; +#1876 = DATE_TIME_ROLE ( 'classification_date' ) ; +#1877 = EDGE_LOOP ( 'NONE', ( #699, #1909, #1538, #1570 ) ) ; +#1878 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#1879 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#1880 = CARTESIAN_POINT ( 'NONE', ( 372.9999999999993200, 87.49999999999991500, 18.00000000000000400 ) ) ; +#1881 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #2017 ) ; +#1882 = CARTESIAN_POINT ( 'NONE', ( -744.0000000000006800, -5.551115123125782700E-014, -0.001000000000001000100 ) ) ; +#1883 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, -16.50000000000000000, 349.5000000000000600 ) ) ; +#1884 = PERSON_AND_ORGANIZATION_ROLE ( 'classification_officer' ) ; +#1885 = ORIENTED_EDGE ( 'NONE', *, *, #221, .T. ) ; +#1886 = AXIS2_PLACEMENT_3D ( 'NONE', #1169, #2219, #2643 ) ; +#1887 = LINE ( 'NONE', #1083, #1717 ) ; +#1888 = ORGANIZATION ( 'NAUO-ORG2', 'UNSPECIFIED', 'UNSPECIFIED' ) ; +#1889 = CC_DESIGN_SECURITY_CLASSIFICATION ( #1562, ( #2705 ) ) ; +#1890 = CARTESIAN_POINT ( 'NONE', ( 16.49999999999995700, 16.50000000000001400, 0.0000000000000000000 ) ) ; +#1891 = FACE_BOUND ( 'NONE', #1703, .T. ) ; +#1892 = EDGE_CURVE ( 'NONE', #705, #1577, #1152, .T. ) ; +#1893 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#1894 = PERSON_AND_ORGANIZATION_ROLE ( 'design_supplier' ) ; +#1895 = ORIENTED_EDGE ( 'NONE', *, *, #475, .F. ) ; +#1896 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, -16.50000000000000000, 349.5000000000000600 ) ) ; +#1897 = VERTEX_POINT ( 'NONE', #1690 ) ; +#1898 = LINE ( 'NONE', #524, #156 ) ; +#1899 = ORIENTED_EDGE ( 'NONE', *, *, #1294, .T. ) ; +#1900 = EDGE_CURVE ( 'NONE', #1606, #2438, #1571, .T. ) ; +#1901 = APPROVAL_ROLE ( '' ) ; +#1902 = ORIENTED_EDGE ( 'NONE', *, *, #728, .T. ) ; +#1903 = EDGE_LOOP ( 'NONE', ( #2564, #832 ) ) ; +#1904 = PRODUCT_RELATED_PRODUCT_CATEGORY ( 'detail', '', ( #2311 ) ) ; +#1905 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1906 = AXIS2_PLACEMENT_3D ( 'NONE', #1090, #2383, #303 ) ; +#1907 = VERTEX_POINT ( 'NONE', #2518 ) ; +#1908 = CARTESIAN_POINT ( 'NONE', ( -16.49999999999995700, 16.50000000000001400, 477.0000000000000000 ) ) ; +#1909 = ORIENTED_EDGE ( 'NONE', *, *, #1873, .T. ) ; +#1910 = APPROVAL ( #2104, 'UNKNOWN' ) ; +#1911 = SECURITY_CLASSIFICATION_LEVEL ( 'unclassified' ) ; +#1912 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#1913 = DATE_AND_TIME ( #1712, #2283 ) ; +#1914 = EDGE_CURVE ( 'NONE', #2231, #1714, #1536, .T. ) ; +#1915 = CARTESIAN_POINT ( 'NONE', ( -748.0000000000006800, 87.49999999999991500, 18.00000000000000400 ) ) ; +#1916 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1917 = DATE_TIME_ROLE ( 'classification_date' ) ; +#1918 = AXIS2_PLACEMENT_3D ( 'NONE', #2023, #1396, #1813 ) ; +#1919 = CARTESIAN_POINT ( 'NONE', ( 762.5000000000000000, -150.0000000000000300, 18.00000000000000000 ) ) ; +#1920 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1921 = VECTOR ( 'NONE', #135, 1000.000000000000000 ) ; +#1922 = CARTESIAN_POINT ( 'NONE', ( -6.661338147750939200E-013, -5.551115123125782700E-014, -0.001000000000001000100 ) ) ; +#1923 = EDGE_CURVE ( 'NONE', #1829, #2029, #1082, .T. ) ; +#1924 = APPROVAL ( #795, 'UNSPECIFIED' ) ; +#1925 = CARTESIAN_POINT ( 'NONE', ( 374.9999999999993200, 87.49999999999991500, 18.00000000000000400 ) ) ; +#1926 = LINE ( 'NONE', #2352, #986 ) ; +#1927 = VERTEX_POINT ( 'NONE', #512 ) ; +#1928 = FACE_OUTER_BOUND ( 'NONE', #2664, .T. ) ; +#1929 = FACE_OUTER_BOUND ( 'NONE', #152, .T. ) ; +#1930 = FACE_BOUND ( 'NONE', #351, .T. ) ; +#1931 = CARTESIAN_POINT ( 'NONE', ( -1.110223024625156500E-013, 477.0000000000000000, 0.0000000000000000000 ) ) ; +#1932 = ORIENTED_EDGE ( 'NONE', *, *, #779, .T. ) ; +#1933 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1934 = LINE ( 'NONE', #742, #2299 ) ; +#1935 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 7.853012166596451800, 349.5000000000000600 ) ) ; +#1936 = ORIENTED_EDGE ( 'NONE', *, *, #2422, .T. ) ; +#1937 = ORIENTED_EDGE ( 'NONE', *, *, #642, .T. ) ; +#1938 = CARTESIAN_POINT ( 'NONE', ( -748.0000000000006800, -5.526622187142835700E-014, 18.00000000000000400 ) ) ; +#1939 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#1940 = AXIS2_PLACEMENT_3D ( 'NONE', #2137, #280, #895 ) ; +#1941 = ORIENTED_EDGE ( 'NONE', *, *, #1551, .T. ) ; +#1942 = ADVANCED_FACE ( 'NONE', ( #1147 ), #535, .F. ) ; +#1943 = ORIENTED_EDGE ( 'NONE', *, *, #2292, .F. ) ; +#1944 = CC_DESIGN_DATE_AND_TIME_ASSIGNMENT ( #1269, #1052, ( #1721 ) ) ; +#1945 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, -16.50000000000000000, 346.0000000000000600 ) ) ; +#1946 = CARTESIAN_POINT ( 'NONE', ( -375.0000000000006800, -5.526622187142835700E-014, -0.001000000000001000100 ) ) ; +#1947 = EDGE_CURVE ( 'NONE', #2216, #2612, #732, .T. ) ; +#1948 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#1949 = CARTESIAN_POINT ( 'NONE', ( -373.0000000000006800, -87.50000000000002800, 18.00000000000000400 ) ) ; +#1950 = CARTESIAN_POINT ( 'NONE', ( 374.9999999999993200, -87.50000000000002800, 0.0000000000000000000 ) ) ; +#1951 = APPROVAL_DATE_TIME ( #2418, #2131 ) ; +#1952 = CARTESIAN_POINT ( 'NONE', ( 762.4999999999990900, -127.5000000000000600, 18.00000000000000400 ) ) ; +#1953 = CARTESIAN_POINT ( 'NONE', ( -6.661338147750939200E-013, -87.50000000000002800, 0.0000000000000000000 ) ) ; +#1954 = VERTEX_POINT ( 'NONE', #1333 ) ; +#1955 = PERSON ( 'NAUO-PER3', 'UNSPECIFIED', 'UNSPECIFIED', ('UNSPECIFIED'), ('UNSPECIFIED'), ('UNSPECIFIED') ) ; +#1956 = ADVANCED_FACE ( 'NONE', ( #1726 ), #2703, .F. ) ; +#1957 = DIRECTION ( 'NONE', ( -1.000000000000000000, -2.102695122396129700E-016, 0.0000000000000000000 ) ) ; +#1958 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#1959 = EDGE_CURVE ( 'NONE', #1927, #1704, #1280, .T. ) ; +#1960 = VECTOR ( 'NONE', #2265, 1000.000000000000000 ) ; +#1961 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#1962 = APPROVAL ( #620, 'UNSPECIFIED' ) ; +#1963 = AXIS2_PLACEMENT_3D ( 'NONE', #833, #1635, #1437 ) ; +#1964 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#1965 = EDGE_LOOP ( 'NONE', ( #1256, #180 ) ) ; +#1966 = CC_DESIGN_SECURITY_CLASSIFICATION ( #295, ( #2712 ) ) ; +#1967 = CARTESIAN_POINT ( 'NONE', ( 372.9999999999993200, 87.49999999999991500, -0.001000000000001000100 ) ) ; +#1968 = EDGE_CURVE ( 'NONE', #979, #987, #991, .T. ) ; +#1969 = EDGE_LOOP ( 'NONE', ( #2161, #1236, #891 ) ) ; +#1970 = ORIENTED_EDGE ( 'NONE', *, *, #822, .T. ) ; +#1971 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1972 = ADVANCED_FACE ( 'NONE', ( #577 ), #1308, .F. ) ; +#1973 = VECTOR ( 'NONE', #2416, 1000.000000000000000 ) ; +#1974 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 1.000000000000000000, 0.0000000000000000000 ) ) ; +#1975 = ORIENTED_EDGE ( 'NONE', *, *, #25, .F. ) ; +#1976 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1977 = ORIENTED_EDGE ( 'NONE', *, *, #346, .T. ) ; +#1978 = EDGE_CURVE ( 'NONE', #632, #2231, #125, .T. ) ; +#1979 = VERTEX_POINT ( 'NONE', #1716 ) ; +#1980 = ORIENTED_EDGE ( 'NONE', *, *, #389, .T. ) ; +#1981 = CARTESIAN_POINT ( 'NONE', ( 745.9999999999993200, -5.551115123125782700E-014, 0.0000000000000000000 ) ) ; +#1982 = EDGE_LOOP ( 'NONE', ( #114, #1546 ) ) ; +#1983 = AXIS2_PLACEMENT_3D ( 'NONE', #569, #2633, #1375 ) ; +#1984 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 18.00000000000000000 ) ) ; +#1985 = ADVANCED_FACE ( 'NONE', ( #2229 ), #2297, .F. ) ; +#1986 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#1987 = DATE_AND_TIME ( #1844, #260 ) ; +#1988 = AXIS2_PLACEMENT_3D ( 'NONE', #2681, #1597, #189 ) ; +#1989 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#1990 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#1991 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #81 ) ; +#1992 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#1993 = CYLINDRICAL_SURFACE ( 'NONE', #172, 2.000000000000001800 ) ; +#1994 = FACE_OUTER_BOUND ( 'NONE', #1801, .T. ) ; +#1995 = EDGE_CURVE ( 'NONE', #1897, #2504, #1018, .T. ) ; +#1996 = ADVANCED_FACE ( 'NONE', ( #1598 ), #154, .F. ) ; +#1997 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #2579, #1894, ( #199 ) ) ; +#1998 = EDGE_CURVE ( 'NONE', #1540, #583, #2632, .T. ) ; +#1999 = CARTESIAN_POINT ( 'NONE', ( -6.661338147750939200E-013, -5.551115123125782700E-014, 18.00000000000000400 ) ) ; +#2000 = VERTEX_POINT ( 'NONE', #1935 ) ; +#2001 = CIRCLE ( 'NONE', #2326, 2.000000000000000400 ) ; +#2002 = LINE ( 'NONE', #2346, #2500 ) ; +#2003 = ORIENTED_EDGE ( 'NONE', *, *, #2486, .F. ) ; +#2004 = ORIENTED_EDGE ( 'NONE', *, *, #1892, .T. ) ; +#2005 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2006 = CARTESIAN_POINT ( 'NONE', ( -746.0000000000006800, -87.50000000000002800, 0.0000000000000000000 ) ) ; +#2007 = EDGE_CURVE ( 'NONE', #1391, #1182, #2162, .T. ) ; +#2008 = CC_DESIGN_APPROVAL ( #2295, ( #709 ) ) ; +#2009 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2010 = AXIS2_PLACEMENT_3D ( 'NONE', #2135, #88, #98 ) ; +#2011 = SHAPE_REPRESENTATION ( 'Boden', ( #750 ), #2303 ) ; +#2012 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #838 ) ; +#2013 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#2014 = CARTESIAN_POINT ( 'NONE', ( -746.0000000000006800, 87.49999999999991500, -0.001000000000001000100 ) ) ; +#2015 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2016 = APPROVAL ( #2083, 'UNSPECIFIED' ) ; +#2017 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#2018 = EDGE_CURVE ( 'NONE', #203, #1897, #2597, .T. ) ; +#2019 = AXIS2_PLACEMENT_3D ( 'NONE', #1984, #1170, #1558 ) ; +#2020 = SHAPE_REPRESENTATION ( 'Sule', ( #750 ), #2608 ) ; +#2021 = EDGE_LOOP ( 'NONE', ( #1112, #2646 ) ) ; +#2022 = AXIS2_PLACEMENT_3D ( 'NONE', #2661, #368, #590 ) ; +#2023 = CARTESIAN_POINT ( 'NONE', ( -373.0000000000006800, 87.49999999999991500, 0.0000000000000000000 ) ) ; +#2024 = VECTOR ( 'NONE', #2469, 1000.000000000000000 ) ; +#2025 = PERSON_AND_ORGANIZATION_ROLE ( 'creator' ) ; +#2026 = AXIS2_PLACEMENT_3D ( 'NONE', #1794, #1392, #2419 ) ; +#2027 = ORIENTED_EDGE ( 'NONE', *, *, #1756, .F. ) ; +#2028 = CC_DESIGN_DATE_AND_TIME_ASSIGNMENT ( #2279, #269, ( #1562 ) ) ; +#2029 = VERTEX_POINT ( 'NONE', #904 ) ; +#2030 = SHAPE_REPRESENTATION ( 'Rippe', ( #750 ), #2462 ) ; +#2031 = ORIENTED_EDGE ( 'NONE', *, *, #1270, .T. ) ; +#2032 = EDGE_CURVE ( 'NONE', #1359, #963, #505, .T. ) ; +#2033 = FACE_OUTER_BOUND ( 'NONE', #721, .T. ) ; +#2034 = FACE_OUTER_BOUND ( 'NONE', #470, .T. ) ; +#2035 = APPROVAL_STATUS ( 'not_yet_approved' ) ; +#2036 = ORIENTED_EDGE ( 'NONE', *, *, #619, .F. ) ; +#2037 = EDGE_LOOP ( 'NONE', ( #2271, #1466, #2361, #2004 ) ) ; +#2038 = CARTESIAN_POINT ( 'NONE', ( -1.110223024625156500E-013, 477.0000000000000000, 18.00000000000001400 ) ) ; +#2039 = EDGE_LOOP ( 'NONE', ( #2136, #1559 ) ) ; +#2040 = CARTESIAN_POINT ( 'NONE', ( 372.9999999999993200, -5.551115123125782700E-014, -0.001000000000001000100 ) ) ; +#2041 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2042 = EDGE_CURVE ( 'NONE', #2134, #356, #2259, .T. ) ; +#2043 = CC_DESIGN_DATE_AND_TIME_ASSIGNMENT ( #565, #1608, ( #2358 ) ) ; +#2044 = APPROVAL_PERSON_ORGANIZATION ( #649, #972, #867 ) ; +#2045 = AXIS2_PLACEMENT_3D ( 'NONE', #1419, #787, #2675 ) ; +#2046 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #1274 ) ; +#2047 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2048 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#2049 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#2050 = CYLINDRICAL_SURFACE ( 'NONE', #2026, 3.500000000000003100 ) ; +#2051 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#2052 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #2194 ) ; +#2053 = CARTESIAN_POINT ( 'NONE', ( 249.0000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2054 = SECURITY_CLASSIFICATION_LEVEL ( 'unclassified' ) ; +#2055 = CIRCLE ( 'NONE', #898, 3.500000000000003100 ) ; +#2056 = EDGE_LOOP ( 'NONE', ( #1055, #2606, #2268, #2701 ) ) ; +#2057 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#2058 = AXIS2_PLACEMENT_3D ( 'NONE', #1802, #562, #760 ) ; +#2059 = FACE_OUTER_BOUND ( 'NONE', #510, .T. ) ; +#2060 = ORIENTED_EDGE ( 'NONE', *, *, #1102, .F. ) ; +#2061 = CONICAL_SURFACE ( 'NONE', #1569, 3.500000000000003100, 1.029744258676652500 ) ; +#2062 = EDGE_CURVE ( 'NONE', #930, #1979, #2666, .T. ) ; +#2063 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000000000, 149.9999999999999700, 18.00000000000000000 ) ) ; +#2064 = PERSON_AND_ORGANIZATION_ROLE ( 'design_supplier' ) ; +#2065 = CC_DESIGN_APPROVAL ( #1924, ( #1378 ) ) ; +#2066 = ORIENTED_EDGE ( 'NONE', *, *, #1959, .F. ) ; +#2067 = VERTEX_POINT ( 'NONE', #385 ) ; +#2068 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2069 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2070 = ITEM_DEFINED_TRANSFORMATION ( 'NONE', 'NONE', #598, #750 ) ; +#2071 = CARTESIAN_POINT ( 'NONE', ( 743.9999999999993200, 87.49999999999991500, -0.001000000000001000100 ) ) ; +#2072 = SECURITY_CLASSIFICATION_LEVEL ( 'unclassified' ) ; +#2073 = CONTEXT_DEPENDENT_SHAPE_REPRESENTATION ( #1303, #1255 ) ; +#2074 = AXIS2_PLACEMENT_3D ( 'NONE', #1682, #452, #230 ) ; +#2075 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#2076 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #1747, #896, ( #486 ) ) ; +#2077 = EDGE_LOOP ( 'NONE', ( #212, #2409, #1737 ) ) ; +#2078 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#2079 = EDGE_CURVE ( 'NONE', #553, #1134, #1412, .T. ) ; +#2080 = LINE ( 'NONE', #2071, #2656 ) ; +#2081 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #2454 ) ; +#2082 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#2083 = APPROVAL_STATUS ( 'not_yet_approved' ) ; +#2084 = CIRCLE ( 'NONE', #1983, 2.000000000000001800 ) ; +#2085 = CARTESIAN_POINT ( 'NONE', ( -748.0000000000006800, -87.50000000000002800, -0.001000000000001000100 ) ) ; +#2086 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2087 = CIRCLE ( 'NONE', #2682, 3.500000000000003100 ) ; +#2088 = CLOSED_SHELL ( 'NONE', ( #1374, #1130, #686, #841, #2626, #2205 ) ) ; +#2089 = EDGE_CURVE ( 'NONE', #1826, #2618, #633, .T. ) ; +#2090 = APPROVAL_STATUS ( 'not_yet_approved' ) ; +#2091 = EDGE_LOOP ( 'NONE', ( #993, #774 ) ) ; +#2092 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#2093 = PRODUCT_DEFINITION_FORMATION_WITH_SPECIFIED_SOURCE ( 'ANY', '', #2329, .NOT_KNOWN. ) ; +#2094 = LINE ( 'NONE', #2291, #1089 ) ; +#2095 = VERTEX_POINT ( 'NONE', #1363 ) ; +#2096 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#2097 = AXIS2_PLACEMENT_3D ( 'NONE', #14, #1848, #1624 ) ; +#2098 = CARTESIAN_POINT ( 'NONE', ( 762.4999999999993200, 127.4999999999999400, 0.0000000000000000000 ) ) ; +#2099 = ORIENTED_EDGE ( 'NONE', *, *, #2356, .T. ) ; +#2100 = EDGE_CURVE ( 'NONE', #1776, #2216, #1762, .T. ) ; +#2101 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#2102 = CARTESIAN_POINT ( 'NONE', ( 374.9999999999993200, -87.50000000000002800, 18.00000000000000400 ) ) ; +#2103 = ORIENTED_EDGE ( 'NONE', *, *, #2156, .F. ) ; +#2104 = APPROVAL_STATUS ( 'not_yet_approved' ) ; +#2105 = ORIENTED_EDGE ( 'NONE', *, *, #2079, .F. ) ; +#2106 = APPROVAL_DATE_TIME ( #839, #1707 ) ; +#2107 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2108 = PERSON_AND_ORGANIZATION_ROLE ( 'classification_officer' ) ; +#2109 = EDGE_LOOP ( 'NONE', ( #1483, #2301 ) ) ; +#2110 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#2111 = AXIS2_PLACEMENT_3D ( 'NONE', #2203, #1621, #2479 ) ; +#2112 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2113 = CARTESIAN_POINT ( 'NONE', ( -373.0000000000006800, -87.50000000000002800, -0.001000000000001000100 ) ) ; +#2114 = VECTOR ( 'NONE', #380, 1000.000000000000000 ) ; +#2115 = EDGE_CURVE ( 'NONE', #797, #1134, #821, .T. ) ; +#2116 = CYLINDRICAL_SURFACE ( 'NONE', #1831, 2.000000000000001800 ) ; +#2117 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2118 = PERSON_AND_ORGANIZATION_ROLE ( 'classification_officer' ) ; +#2119 = DATE_AND_TIME ( #2699, #2052 ) ; +#2120 = ORIENTED_EDGE ( 'NONE', *, *, #107, .F. ) ; +#2121 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#2122 = VECTOR ( 'NONE', #2558, 1000.000000000000000 ) ; +#2123 = PRODUCT_DEFINITION_SHAPE ( 'NONE', 'NONE', #2708 ) ; +#2124 = VECTOR ( 'NONE', #623, 1000.000000000000000 ) ; +#2125 = EDGE_LOOP ( 'NONE', ( #781, #1899, #578, #1815 ) ) ; +#2126 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 5.750000000000005300, 437.0000000000000000 ) ) ; +#2127 = FACE_OUTER_BOUND ( 'NONE', #1639, .T. ) ; +#2128 = AXIS2_PLACEMENT_3D ( 'NONE', #682, #1511, #1101 ) ; +#2129 = APPROVAL_STATUS ( 'not_yet_approved' ) ; +#2130 = LINE ( 'NONE', #907, #1631 ) ; +#2131 = APPROVAL ( #201, 'UNSPECIFIED' ) ; +#2132 = ORIENTED_EDGE ( 'NONE', *, *, #1458, .F. ) ; +#2133 = EDGE_CURVE ( 'NONE', #827, #866, #2429, .T. ) ; +#2134 = VERTEX_POINT ( 'NONE', #1411 ) ; +#2135 = CARTESIAN_POINT ( 'NONE', ( -373.0000000000006800, -5.551115123125782700E-014, -0.001000000000001000100 ) ) ; +#2136 = ORIENTED_EDGE ( 'NONE', *, *, #1409, .F. ) ; +#2137 = CARTESIAN_POINT ( 'NONE', ( -6.661338147750939200E-013, -5.551115123125782700E-014, 18.00000000000000400 ) ) ; +#2138 = PERSON_AND_ORGANIZATION_ROLE ( 'classification_officer' ) ; +#2139 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000000000, 149.9999999999999700, 18.00000000000000000 ) ) ; +#2140 = ORGANIZATION ( 'NAUO-ORG1', 'UNSPECIFIED', 'UNSPECIFIED' ) ; +#2141 = CONTEXT_DEPENDENT_SHAPE_REPRESENTATION ( #659, #2123 ) ; +#2142 = CARTESIAN_POINT ( 'NONE', ( -16.49999999999995700, -16.50000000000000000, 0.0000000000000000000 ) ) ; +#2143 = ADVANCED_FACE ( 'NONE', ( #22 ), #2662, .F. ) ; +#2144 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#2145 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #622 ) ; +#2146 = EDGE_CURVE ( 'NONE', #1291, #1679, #1440, .T. ) ; +#2147 = ORIENTED_EDGE ( 'NONE', *, *, #2405, .T. ) ; +#2148 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #196 ) ; +#2149 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000005700, -127.5000000000000600, 18.00000000000000400 ) ) ; +#2150 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #752, #1884, ( #840 ) ) ; +#2151 = CIRCLE ( 'NONE', #2491, 2.000000000000001800 ) ; +#2152 = CARTESIAN_POINT ( 'NONE', ( 4.286263797015731700E-016, -16.50000000000000000, 353.0000000000000600 ) ) ; +#2153 = DIRECTION ( 'NONE', ( -0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#2154 = CC_DESIGN_APPROVAL ( #2439, ( #1721 ) ) ; +#2155 = CARTESIAN_POINT ( 'NONE', ( 372.9999999999993200, -87.50000000000002800, 0.0000000000000000000 ) ) ; +#2156 = EDGE_CURVE ( 'NONE', #1770, #356, #2225, .T. ) ; +#2157 = AXIS2_PLACEMENT_3D ( 'NONE', #1565, #329, #2015 ) ; +#2158 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#2159 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #1561, #2460, ( #2329 ) ) ; +#2160 = ADVANCED_FACE ( 'NONE', ( #790 ), #1552, .F. ) ; +#2161 = ORIENTED_EDGE ( 'NONE', *, *, #1663, .F. ) ; +#2162 = CIRCLE ( 'NONE', #112, 2.000000000000001800 ) ; +#2163 = VECTOR ( 'NONE', #2489, 1000.000000000000000 ) ; +#2164 = EDGE_LOOP ( 'NONE', ( #594, #2599, #161, #1347 ) ) ; +#2165 = CARTESIAN_POINT ( 'NONE', ( 370.9999999999993200, 87.49999999999991500, 18.00000000000000400 ) ) ; +#2166 = VERTEX_POINT ( 'NONE', #1140 ) ; +#2167 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2168 = FACE_OUTER_BOUND ( 'NONE', #2440, .T. ) ; +#2169 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#2170 = EDGE_LOOP ( 'NONE', ( #2272, #1058, #1544, #668 ) ) ; +#2171 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#2172 = ORIENTED_EDGE ( 'NONE', *, *, #2414, .F. ) ; +#2173 = AXIS2_PLACEMENT_3D ( 'NONE', #2252, #1005, #1211 ) ; +#2174 = APPROVAL ( #851, 'UNSPECIFIED' ) ; +#2175 = ORIENTED_EDGE ( 'NONE', *, *, #786, .F. ) ; +#2176 = EDGE_CURVE ( 'NONE', #947, #2679, #337, .T. ) ; +#2177 = ADVANCED_FACE ( 'NONE', ( #1184 ), #176, .F. ) ; +#2178 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#2179 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#2180 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#2181 = APPROVAL_DATE_TIME ( #1987, #2315 ) ; +#2182 = CARTESIAN_POINT ( 'NONE', ( -375.0000000000006800, 87.49999999999991500, 0.0000000000000000000 ) ) ; +#2183 = EDGE_LOOP ( 'NONE', ( #2339, #2235 ) ) ; +#2184 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#2185 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2186 = APPROVAL_DATE_TIME ( #1616, #1924 ) ; +#2187 = AXIS2_PLACEMENT_3D ( 'NONE', #304, #1166, #735 ) ; +#2188 = FACE_BOUND ( 'NONE', #1125, .T. ) ; +#2189 = CARTESIAN_POINT ( 'NONE', ( -746.0000000000006800, -87.50000000000002800, -0.001000000000001000100 ) ) ; +#2190 = ADVANCED_FACE ( 'NONE', ( #1929 ), #536, .F. ) ; +#2191 = PRODUCT_DEFINITION_FORMATION_WITH_SPECIFIED_SOURCE ( 'ANY', '', #253, .NOT_KNOWN. ) ; +#2192 = AXIS2_PLACEMENT_3D ( 'NONE', #2474, #1217, #1658 ) ; +#2193 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2194 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#2195 = ORIENTED_EDGE ( 'NONE', *, *, #779, .F. ) ; +#2196 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#2197 = AXIS2_PLACEMENT_3D ( 'NONE', #1515, #2153, #106 ) ; +#2198 = CIRCLE ( 'NONE', #763, 2.000000000000001800 ) ; +#2199 = ORIENTED_EDGE ( 'NONE', *, *, #1998, .T. ) ; +#2200 = CARTESIAN_POINT ( 'NONE', ( 4.286263797015730200E-016, 5.750000000000005300, 440.5000000000000000 ) ) ; +#2201 = FACE_BOUND ( 'NONE', #2039, .T. ) ; +#2202 = ORIENTED_EDGE ( 'NONE', *, *, #664, .F. ) ; +#2203 = CARTESIAN_POINT ( 'NONE', ( 745.9999999999993200, 87.49999999999991500, 18.00000000000000400 ) ) ; +#2204 = CIRCLE ( 'NONE', #1940, 2.000000000000000000 ) ; +#2205 = ADVANCED_FACE ( 'NONE', ( #602 ), #13, .F. ) ; +#2206 = ORIENTED_EDGE ( 'NONE', *, *, #2566, .T. ) ; +#2207 = EDGE_LOOP ( 'NONE', ( #1932, #791, #2286, #2400 ) ) ; +#2208 = ORIENTED_EDGE ( 'NONE', *, *, #1968, .T. ) ; +#2209 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2210 = AXIS2_PLACEMENT_3D ( 'NONE', #130, #2591, #285 ) ; +#2211 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #2477 ) ; +#2212 = CARTESIAN_POINT ( 'NONE', ( -748.0000000000006800, 87.49999999999991500, 0.0000000000000000000 ) ) ; +#2213 = EDGE_CURVE ( 'NONE', #2612, #534, #856, .T. ) ; +#2214 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#2215 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #2092, #2690, ( #1378 ) ) ; +#2216 = VERTEX_POINT ( 'NONE', #1197 ) ; +#2217 = ORIENTED_EDGE ( 'NONE', *, *, #2292, .T. ) ; +#2218 = DATE_AND_TIME ( #1433, #1991 ) ; +#2219 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#2220 = CYLINDRICAL_SURFACE ( 'NONE', #2333, 2.000000000000001800 ) ; +#2221 = PERSON_AND_ORGANIZATION ( #1955, #1176 ) ; +#2222 = VECTOR ( 'NONE', #109, 1000.000000000000000 ) ; +#2223 = AXIS2_PLACEMENT_3D ( 'NONE', #2351, #2340, #1676 ) ; +#2224 = CC_DESIGN_DATE_AND_TIME_ASSIGNMENT ( #1812, #1917, ( #486 ) ) ; +#2225 = LINE ( 'NONE', #2391, #2463 ) ; +#2226 = EDGE_CURVE ( 'NONE', #1085, #2231, #57, .T. ) ; +#2227 = ORIENTED_EDGE ( 'NONE', *, *, #290, .T. ) ; +#2228 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2229 = FACE_OUTER_BOUND ( 'NONE', #1327, .T. ) ; +#2230 = FACE_BOUND ( 'NONE', #2372, .T. ) ; +#2231 = VERTEX_POINT ( 'NONE', #1453 ) ; +#2232 = ORIENTED_EDGE ( 'NONE', *, *, #200, .T. ) ; +#2233 = ORIENTED_EDGE ( 'NONE', *, *, #1533, .T. ) ; +#2234 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2235 = ORIENTED_EDGE ( 'NONE', *, *, #2238, .F. ) ; +#2236 = CARTESIAN_POINT ( 'NONE', ( -744.0000000000006800, 87.49999999999991500, 0.0000000000000000000 ) ) ; +#2237 = DATE_TIME_ROLE ( 'creation_date' ) ; +#2238 = EDGE_CURVE ( 'NONE', #971, #1540, #240, .T. ) ; +#2239 = ORIENTED_EDGE ( 'NONE', *, *, #1245, .T. ) ; +#2240 = DIRECTION ( 'NONE', ( 1.049727191138617500E-016, -0.5150380749100558200, 0.8571673007021113300 ) ) ; +#2241 = APPROVAL ( #27, 'UNSPECIFIED' ) ; +#2242 = APPROVAL_DATE_TIME ( #353, #1473 ) ; +#2243 = APPROVAL_ROLE ( '' ) ; +#2244 = CC_DESIGN_DATE_AND_TIME_ASSIGNMENT ( #138, #1692, ( #1054 ) ) ; +#2245 = ITEM_DEFINED_TRANSFORMATION ( 'NONE', 'NONE', #315, #750 ) ; +#2246 = EDGE_CURVE ( 'NONE', #2679, #947, #2528, .T. ) ; +#2247 = EDGE_LOOP ( 'NONE', ( #1614, #2036 ) ) ; +#2248 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #1990 ) ; +#2249 = VECTOR ( 'NONE', #224, 1000.000000000000000 ) ; +#2250 = PERSON_AND_ORGANIZATION ( #877, #1888 ) ; +#2251 = APPROVAL_PERSON_ORGANIZATION ( #2488, #1924, #2470 ) ; +#2252 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 18.00000000000000400 ) ) ; +#2253 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2254 = FACE_OUTER_BOUND ( 'NONE', #1253, .T. ) ; +#2255 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2256 = AXIS2_PLACEMENT_3D ( 'NONE', #1883, #1893, #18 ) ; +#2257 = EDGE_LOOP ( 'NONE', ( #575, #58, #1394, #1160 ) ) ; +#2258 = PLANE ( 'NONE', #1668 ) ; +#2259 = CIRCLE ( 'NONE', #235, 2.000000000000001800 ) ; +#2260 = CIRCLE ( 'NONE', #1727, 2.000000000000001800 ) ; +#2261 = ORIENTED_EDGE ( 'NONE', *, *, #629, .T. ) ; +#2262 = PRODUCT_DEFINITION_SHAPE ( 'NONE', 'NONE', #709 ) ; +#2263 = EDGE_CURVE ( 'NONE', #1182, #2067, #1349, .T. ) ; +#2264 = VECTOR ( 'NONE', #608, 1000.000000000000000 ) ; +#2265 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#2266 = FACE_OUTER_BOUND ( 'NONE', #215, .T. ) ; +#2267 = APPLICATION_CONTEXT ( 'configuration controlled 3d designs of mechanical parts and assemblies' ) ; +#2268 = ORIENTED_EDGE ( 'NONE', *, *, #1582, .F. ) ; +#2269 = VECTOR ( 'NONE', #1292, 1000.000000000000000 ) ; +#2270 = DIRECTION ( 'NONE', ( 1.000000000000000000, 2.327511582023389100E-016, 0.0000000000000000000 ) ) ; +#2271 = ORIENTED_EDGE ( 'NONE', *, *, #2698, .F. ) ; +#2272 = ORIENTED_EDGE ( 'NONE', *, *, #2276, .F. ) ; +#2273 = ORIENTED_EDGE ( 'NONE', *, *, #2446, .F. ) ; +#2274 = DIRECTION ( 'NONE', ( -0.4627565364864406100, 0.8864854132692051600, 0.0000000000000000000 ) ) ; +#2275 = APPROVAL_STATUS ( 'not_yet_approved' ) ; +#2276 = EDGE_CURVE ( 'NONE', #963, #1115, #1084, .T. ) ; +#2277 = DATE_AND_TIME ( #804, #2211 ) ; +#2278 = CC_DESIGN_APPROVAL ( #627, ( #1562 ) ) ; +#2279 = DATE_AND_TIME ( #72, #2012 ) ; +#2280 = ORGANIZATION ( 'NAUO-ORG4', 'UNSPECIFIED', 'UNSPECIFIED' ) ; +#2281 = CARTESIAN_POINT ( 'NONE', ( -16.49999999999995700, 16.50000000000001400, 477.0000000000000000 ) ) ; +#2282 = EDGE_CURVE ( 'NONE', #79, #321, #2667, .T. ) ; +#2283 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #878 ) ; +#2284 = CARTESIAN_POINT ( 'NONE', ( -748.0000000000006800, -87.50000000000002800, 0.0000000000000000000 ) ) ; +#2285 = APPLICATION_PROTOCOL_DEFINITION ( 'international standard', 'config_control_design', 1994, #1417 ) ; +#2286 = ORIENTED_EDGE ( 'NONE', *, *, #786, .T. ) ; +#2287 = CYLINDRICAL_SURFACE ( 'NONE', #859, 2.000000000000000400 ) ; +#2288 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#2289 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #48 ) ; +#2290 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 5.750000000000005300, 258.4999999999999400 ) ) ; +#2291 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000000000, 149.9999999999999700, 18.00000000000000000 ) ) ; +#2292 = EDGE_CURVE ( 'NONE', #1088, #2686, #1019, .T. ) ; +#2293 = PERSON_AND_ORGANIZATION_ROLE ( 'creator' ) ; +#2294 = CIRCLE ( 'NONE', #2157, 2.000000000000001800 ) ; +#2295 = APPROVAL ( #34, 'UNSPECIFIED' ) ; +#2296 = ORIENTED_EDGE ( 'NONE', *, *, #642, .F. ) ; +#2297 = CYLINDRICAL_SURFACE ( 'NONE', #881, 2.000000000000000000 ) ; +#2298 = CIRCLE ( 'NONE', #1421, 2.000000000000001800 ) ; +#2299 = VECTOR ( 'NONE', #1778, 1000.000000000000000 ) ; +#2300 = CC_DESIGN_APPROVAL ( #1523, ( #1592 ) ) ; +#2301 = ORIENTED_EDGE ( 'NONE', *, *, #2566, .F. ) ; +#2302 = EDGE_CURVE ( 'NONE', #1025, #1291, #634, .T. ) ; +#2303 =( GEOMETRIC_REPRESENTATION_CONTEXT ( 3 ) GLOBAL_UNCERTAINTY_ASSIGNED_CONTEXT ( ( #951 ) ) GLOBAL_UNIT_ASSIGNED_CONTEXT ( ( #136, #153, #1765 ) ) REPRESENTATION_CONTEXT ( 'NONE', 'WORKASPACE' ) ); +#2304 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#2305 = DATE_TIME_ROLE ( 'creation_date' ) ; +#2306 = ORIENTED_EDGE ( 'NONE', *, *, #429, .T. ) ; +#2307 = ORIENTED_EDGE ( 'NONE', *, *, #571, .F. ) ; +#2308 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#2309 = APPROVAL_ROLE ( '' ) ; +#2310 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #1038 ) ; +#2311 = PRODUCT ( '_Getrnkeautomat_BG', '_Getrnkeautomat_BG', '', ( #1827 ) ) ; +#2312 = AXIS2_PLACEMENT_3D ( 'NONE', #442, #1656, #2107 ) ; +#2313 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#2314 = CARTESIAN_POINT ( 'NONE', ( -371.0000000000006800, -87.50000000000002800, 18.00000000000000400 ) ) ; +#2315 = APPROVAL ( #1250, 'UNSPECIFIED' ) ; +#2316 = UNCERTAINTY_MEASURE_WITH_UNIT (LENGTH_MEASURE( 1.000000000000000100E-005 ), #1775, 'distance_accuracy_value', 'NONE'); +#2317 = ORIENTED_EDGE ( 'NONE', *, *, #906, .T. ) ; +#2318 = APPROVAL_PERSON_ORGANIZATION ( #2420, #1572, #1439 ) ; +#2319 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#2320 =( REPRESENTATION_RELATIONSHIP ('NONE','NONE', #1116, #2020 ) REPRESENTATION_RELATIONSHIP_WITH_TRANSFORMATION ( #11 )SHAPE_REPRESENTATION_RELATIONSHIP( ) ); +#2321 = FACE_BOUND ( 'NONE', #4, .T. ) ; +#2322 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2323 = VECTOR ( 'NONE', #1933, 1000.000000000000000 ) ; +#2324 = EDGE_LOOP ( 'NONE', ( #2273, #637 ) ) ; +#2325 = LINE ( 'NONE', #56, #126 ) ; +#2326 = AXIS2_PLACEMENT_3D ( 'NONE', #1156, #149, #1586 ) ; +#2327 = DATE_TIME_ROLE ( 'classification_date' ) ; +#2328 = ORIENTED_EDGE ( 'NONE', *, *, #1825, .F. ) ; +#2329 = PRODUCT ( 'Rckwand', 'Rckwand', '', ( #999 ) ) ; +#2330 = LINE ( 'NONE', #1484, #1509 ) ; +#2331 = CARTESIAN_POINT ( 'NONE', ( 745.9999999999993200, -87.50000000000002800, 0.0000000000000000000 ) ) ; +#2332 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2333 = AXIS2_PLACEMENT_3D ( 'NONE', #1797, #2641, #2009 ) ; +#2334 = CC_DESIGN_DATE_AND_TIME_ASSIGNMENT ( #519, #281, ( #1362 ) ) ; +#2335 = CARTESIAN_POINT ( 'NONE', ( -16.49999999999995700, -16.50000000000000000, 477.0000000000000000 ) ) ; +#2336 = CARTESIAN_POINT ( 'NONE', ( 762.5000000000000000, 149.9999999999999700, 18.00000000000000000 ) ) ; +#2337 =( REPRESENTATION_RELATIONSHIP ('NONE','NONE', #1116, #218 ) REPRESENTATION_RELATIONSHIP_WITH_TRANSFORMATION ( #2070 )SHAPE_REPRESENTATION_RELATIONSHIP( ) ); +#2338 = ORIENTED_EDGE ( 'NONE', *, *, #684, .T. ) ; +#2339 = ORIENTED_EDGE ( 'NONE', *, *, #1448, .F. ) ; +#2340 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#2341 = ITEM_DEFINED_TRANSFORMATION ( 'NONE', 'NONE', #2499, #750 ) ; +#2342 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#2343 = EDGE_CURVE ( 'NONE', #2504, #1609, #308, .T. ) ; +#2344 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #1463 ) ; +#2345 = DATE_AND_TIME ( #621, #2310 ) ; +#2346 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000005700, 127.4999999999999400, 0.0000000000000000000 ) ) ; +#2347 = APPROVAL_STATUS ( 'not_yet_approved' ) ; +#2348 = PRODUCT ( 'Boden', 'Boden', '', ( #1460 ) ) ; +#2349 = DATE_AND_TIME ( #1587, #2145 ) ; +#2350 = AXIS2_PLACEMENT_3D ( 'NONE', #2149, #707, #1519 ) ; +#2351 = CARTESIAN_POINT ( 'NONE', ( -373.0000000000006800, -5.551115123125782700E-014, -0.001000000000001000100 ) ) ; +#2352 = CARTESIAN_POINT ( 'NONE', ( 16.49999999999995700, -16.50000000000000000, 477.0000000000000000 ) ) ; +#2353 = ORIENTED_EDGE ( 'NONE', *, *, #1409, .T. ) ; +#2354 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2355 = LINE ( 'NONE', #1271, #1275 ) ; +#2356 = EDGE_CURVE ( 'NONE', #1115, #1739, #2055, .T. ) ; +#2357 = CONTEXT_DEPENDENT_SHAPE_REPRESENTATION ( #886, #1634 ) ; +#2358 = SECURITY_CLASSIFICATION ( '', '', #2672 ) ; +#2359 = SECURITY_CLASSIFICATION_LEVEL ( 'unclassified' ) ; +#2360 = ADVANCED_FACE ( 'NONE', ( #468 ), #1027, .F. ) ; +#2361 = ORIENTED_EDGE ( 'NONE', *, *, #370, .T. ) ; +#2362 = CARTESIAN_POINT ( 'NONE', ( 1.999999999999334300, 87.49999999999991500, -0.001000000000001000100 ) ) ; +#2363 = VECTOR ( 'NONE', #1107, 1000.000000000000000 ) ; +#2364 = LINE ( 'NONE', #2424, #1416 ) ; +#2365 = ORIENTED_EDGE ( 'NONE', *, *, #2156, .T. ) ; +#2366 = CARTESIAN_POINT ( 'NONE', ( 4.286263797015730200E-016, 5.750000000000005300, 353.0000000000000600 ) ) ; +#2367 = AXIS2_PLACEMENT_3D ( 'NONE', #397, #1837, #167 ) ; +#2368 = VECTOR ( 'NONE', #1655, 1000.000000000000000 ) ; +#2369 = EDGE_LOOP ( 'NONE', ( #384, #2105, #445 ) ) ; +#2370 = CC_DESIGN_DATE_AND_TIME_ASSIGNMENT ( #2692, #1311, ( #1592 ) ) ; +#2371 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 5.750000000000005300, 437.0000000000000000 ) ) ; +#2372 = EDGE_LOOP ( 'NONE', ( #2610, #1002 ) ) ; +#2373 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2374 = EDGE_CURVE ( 'NONE', #134, #1770, #733, .T. ) ; +#2375 = ORIENTED_EDGE ( 'NONE', *, *, #1900, .T. ) ; +#2376 = ADVANCED_FACE ( 'NONE', ( #697 ), #1062, .F. ) ; +#2377 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, -16.50000000000000000, 433.5000000000000000 ) ) ; +#2378 = ORIENTED_EDGE ( 'NONE', *, *, #1640, .T. ) ; +#2379 = ORIENTED_EDGE ( 'NONE', *, *, #875, .F. ) ; +#2380 = CARTESIAN_POINT ( 'NONE', ( -6.661338147750939200E-013, -87.50000000000002800, -0.001000000000001000100 ) ) ; +#2381 = APPROVAL_DATE_TIME ( #558, #2658 ) ; +#2382 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#2383 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#2384 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#2385 = AXIS2_PLACEMENT_3D ( 'NONE', #1949, #2158, #695 ) ; +#2386 = ORIENTED_EDGE ( 'NONE', *, *, #1377, .T. ) ; +#2387 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #2421 ) ; +#2388 = ADVANCED_FACE ( 'NONE', ( #1599 ), #1537, .F. ) ; +#2389 = PLANE ( 'NONE', #214 ) ; +#2390 = FACE_BOUND ( 'NONE', #54, .T. ) ; +#2391 = CARTESIAN_POINT ( 'NONE', ( 747.9999999999993200, -87.50000000000002800, -0.001000000000001000100 ) ) ; +#2392 = VECTOR ( 'NONE', #63, 1000.000000000000300 ) ; +#2393 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#2394 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#2395 = CIRCLE ( 'NONE', #946, 2.000000000000000400 ) ; +#2396 = PERSON_AND_ORGANIZATION_ROLE ( 'classification_officer' ) ; +#2397 = ORIENTED_EDGE ( 'NONE', *, *, #1978, .F. ) ; +#2398 = CIRCLE ( 'NONE', #1194, 2.000000000000001800 ) ; +#2399 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2400 = ORIENTED_EDGE ( 'NONE', *, *, #990, .T. ) ; +#2401 =( NAMED_UNIT ( * ) SI_UNIT ( $, .STERADIAN. ) SOLID_ANGLE_UNIT ( ) ); +#2402 = DESIGN_CONTEXT ( 'detailed design', #772, 'design' ) ; +#2403 = FACE_OUTER_BOUND ( 'NONE', #564, .T. ) ; +#2404 = ADVANCED_FACE ( 'NONE', ( #155 ), #2598, .F. ) ; +#2405 = EDGE_CURVE ( 'NONE', #448, #1328, #2398, .T. ) ; +#2406 = LINE ( 'NONE', #1491, #1249 ) ; +#2407 = CARTESIAN_POINT ( 'NONE', ( 745.9999999999993200, -87.50000000000002800, 18.00000000000000400 ) ) ; +#2408 = CARTESIAN_POINT ( 'NONE', ( 370.9999999999993200, -5.526622187142835700E-014, 18.00000000000000400 ) ) ; +#2409 = ORIENTED_EDGE ( 'NONE', *, *, #1653, .T. ) ; +#2410 = DATE_TIME_ROLE ( 'classification_date' ) ; +#2411 = EDGE_LOOP ( 'NONE', ( #1834, #1858, #743, #1804 ) ) ; +#2412 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2413 = EDGE_LOOP ( 'NONE', ( #1001, #2217, #604, #2674 ) ) ; +#2414 = EDGE_CURVE ( 'NONE', #1123, #1679, #2325, .T. ) ; +#2415 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#2416 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2417 = ADVANCED_FACE ( 'NONE', ( #1728 ), #992, .F. ) ; +#2418 = DATE_AND_TIME ( #456, #1337 ) ; +#2419 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#2420 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#2421 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#2422 = EDGE_CURVE ( 'NONE', #1025, #1123, #2198, .T. ) ; +#2423 = LINE ( 'NONE', #2441, #1203 ) ; +#2424 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000000000, 149.9999999999999700, 0.0000000000000000000 ) ) ; +#2425 = CC_DESIGN_DATE_AND_TIME_ASSIGNMENT ( #2345, #1093, ( #1871 ) ) ; +#2426 = VECTOR ( 'NONE', #1964, 1000.000000000000000 ) ; +#2427 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000005700, 127.4999999999999400, 18.00000000000000400 ) ) ; +#2428 = SECURITY_CLASSIFICATION ( '', '', #1501 ) ; +#2429 = LINE ( 'NONE', #1132, #401 ) ; +#2430 = EDGE_LOOP ( 'NONE', ( #1723, #1000 ) ) ; +#2431 = CIRCLE ( 'NONE', #844, 2.000000000000001800 ) ; +#2432 = CIRCLE ( 'NONE', #139, 2.000000000000001800 ) ; +#2433 = FACE_OUTER_BOUND ( 'NONE', #1367, .T. ) ; +#2434 =( LENGTH_UNIT ( ) NAMED_UNIT ( * ) SI_UNIT ( .MILLI., .METRE. ) ); +#2435 = EDGE_CURVE ( 'NONE', #534, #2612, #1828, .T. ) ; +#2436 = ORIENTED_EDGE ( 'NONE', *, *, #1719, .F. ) ; +#2437 = ORIENTED_EDGE ( 'NONE', *, *, #2486, .T. ) ; +#2438 = VERTEX_POINT ( 'NONE', #2314 ) ; +#2439 = APPROVAL ( #2090, 'UNSPECIFIED' ) ; +#2440 = EDGE_LOOP ( 'NONE', ( #493, #217, #1970 ) ) ; +#2441 = CARTESIAN_POINT ( 'NONE', ( -16.49999999999995700, 16.50000000000001400, 0.0000000000000000000 ) ) ; +#2442 = AXIS2_PLACEMENT_3D ( 'NONE', #798, #2484, #417 ) ; +#2443 = CARTESIAN_POINT ( 'NONE', ( -2.000000000000666600, 87.49999999999991500, 0.0000000000000000000 ) ) ; +#2444 = APPLICATION_PROTOCOL_DEFINITION ( 'international standard', 'config_control_design', 1994, #772 ) ; +#2445 = SECURITY_CLASSIFICATION ( '', '', #2072 ) ; +#2446 = EDGE_CURVE ( 'NONE', #1730, #319, #1625, .T. ) ; +#2447 = AXIS2_PLACEMENT_3D ( 'NONE', #2650, #1161, #2644 ) ; +#2448 = CONTEXT_DEPENDENT_SHAPE_REPRESENTATION ( #1521, #1040 ) ; +#2449 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#2450 = VERTEX_POINT ( 'NONE', #2557 ) ; +#2451 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2452 = CARTESIAN_POINT ( 'NONE', ( 762.5000000000000000, 98.99999999999997200, 18.00000000000000000 ) ) ; +#2453 = VECTOR ( 'NONE', #1916, 1000.000000000000000 ) ; +#2454 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#2455 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#2456 = AXIS2_PLACEMENT_3D ( 'NONE', #1953, #713, #1557 ) ; +#2457 = CIRCLE ( 'NONE', #2456, 2.000000000000000400 ) ; +#2458 = FACE_OUTER_BOUND ( 'NONE', #32, .T. ) ; +#2459 = CARTESIAN_POINT ( 'NONE', ( -2.000000000000666600, -87.50000000000002800, 0.0000000000000000000 ) ) ; +#2460 = PERSON_AND_ORGANIZATION_ROLE ( 'design_owner' ) ; +#2461 = VECTOR ( 'NONE', #1830, 1000.000000000000000 ) ; +#2462 =( GEOMETRIC_REPRESENTATION_CONTEXT ( 3 ) GLOBAL_UNCERTAINTY_ASSIGNED_CONTEXT ( ( #823 ) ) GLOBAL_UNIT_ASSIGNED_CONTEXT ( ( #2434, #1369, #1139 ) ) REPRESENTATION_CONTEXT ( 'NONE', 'WORKASPACE' ) ); +#2463 = VECTOR ( 'NONE', #2455, 1000.000000000000000 ) ; +#2464 = EDGE_LOOP ( 'NONE', ( #2317, #2493, #2437, #1199 ) ) ; +#2465 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#2466 = VECTOR ( 'NONE', #2492, 1000.000000000000000 ) ; +#2467 = FACE_OUTER_BOUND ( 'NONE', #672, .T. ) ; +#2468 = ORIENTED_EDGE ( 'NONE', *, *, #1900, .F. ) ; +#2469 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2470 = APPROVAL_ROLE ( '' ) ; +#2471 = AXIS2_PLACEMENT_3D ( 'NONE', #2495, #40, #1874 ) ; +#2472 = ORIENTED_EDGE ( 'NONE', *, *, #836, .T. ) ; +#2473 = ORIENTED_EDGE ( 'NONE', *, *, #1947, .T. ) ; +#2474 = CARTESIAN_POINT ( 'NONE', ( -746.0000000000006800, 87.49999999999991500, 0.0000000000000000000 ) ) ; +#2475 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #2110, #811, ( #2191 ) ) ; +#2476 = CARTESIAN_POINT ( 'NONE', ( 4.286263797015730200E-016, 5.750000000000005300, 353.0000000000000600 ) ) ; +#2477 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#2478 = ADVANCED_FACE ( 'NONE', ( #1148 ), #929, .F. ) ; +#2479 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2480 = DIRECTION ( 'NONE', ( -1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2481 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #1612 ) ; +#2482 = APPROVAL_PERSON_ORGANIZATION ( #1299, #2295, #404 ) ; +#2483 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#2484 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#2485 = FACE_OUTER_BOUND ( 'NONE', #1281, .T. ) ; +#2486 = EDGE_CURVE ( 'NONE', #316, #1422, #2260, .T. ) ; +#2487 = PERSON_AND_ORGANIZATION_ROLE ( 'creator' ) ; +#2488 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#2489 = DIRECTION ( 'NONE', ( 8.707631565687501900E-016, 1.000000000000000000, 0.0000000000000000000 ) ) ; +#2490 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#2491 = AXIS2_PLACEMENT_3D ( 'NONE', #1336, #2394, #299 ) ; +#2492 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#2493 = ORIENTED_EDGE ( 'NONE', *, *, #1241, .T. ) ; +#2494 = EDGE_CURVE ( 'NONE', #866, #2653, #1478, .T. ) ; +#2495 = CARTESIAN_POINT ( 'NONE', ( -6.661338147750939200E-013, 87.49999999999991500, 18.00000000000000400 ) ) ; +#2496 = VECTOR ( 'NONE', #1028, 1000.000000000000000 ) ; +#2497 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000000000, -150.0000000000000300, 0.0000000000000000000 ) ) ; +#2498 = APPROVAL_ROLE ( '' ) ; +#2499 = AXIS2_PLACEMENT_3D ( 'NONE', #381, #1622, #1006 ) ; +#2500 = VECTOR ( 'NONE', #717, 1000.000000000000000 ) ; +#2501 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2502 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#2503 = EDGE_LOOP ( 'NONE', ( #24, #550 ) ) ; +#2504 = VERTEX_POINT ( 'NONE', #1752 ) ; +#2505 = PERSON_AND_ORGANIZATION_ROLE ( 'classification_officer' ) ; +#2506 = AXIS2_PLACEMENT_3D ( 'NONE', #1734, #293, #1751 ) ; +#2507 = APPROVAL_PERSON_ORGANIZATION ( #1264, #1910, #43 ) ; +#2508 = CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT ( #2221, #2138, ( #1592 ) ) ; +#2509 = APPROVAL_DATE_TIME ( #1167, #627 ) ; +#2510 = APPROVAL_PERSON_ORGANIZATION ( #1781, #1707, #69 ) ; +#2511 = CARTESIAN_POINT ( 'NONE', ( 747.9999999999993200, -87.50000000000002800, 0.0000000000000000000 ) ) ; +#2512 = EDGE_CURVE ( 'NONE', #963, #1907, #1246, .T. ) ; +#2513 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#2514 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#2515 = DATE_TIME_ROLE ( 'creation_date' ) ; +#2516 = EDGE_LOOP ( 'NONE', ( #1866, #1600 ) ) ; +#2517 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #1619 ) ; +#2518 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 5.750000000000005300, 258.4999999999999400 ) ) ; +#2519 = CIRCLE ( 'NONE', #2367, 3.500000000000003100 ) ; +#2520 = CYLINDRICAL_SURFACE ( 'NONE', #1502, 2.000000000000001800 ) ; +#2521 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2522 = EDGE_CURVE ( 'NONE', #905, #2166, #1926, .T. ) ; +#2523 = PERSON_AND_ORGANIZATION_ROLE ( 'creator' ) ; +#2524 = CARTESIAN_POINT ( 'NONE', ( -2.000000000000666600, -87.50000000000002800, -0.001000000000001000100 ) ) ; +#2525 = VERTEX_POINT ( 'NONE', #501 ) ; +#2526 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000005700, 127.4999999999999400, 18.00000000000000400 ) ) ; +#2527 = VECTOR ( 'NONE', #2465, 1000.000000000000000 ) ; +#2528 = CIRCLE ( 'NONE', #2192, 2.000000000000001800 ) ; +#2529 = ORIENTED_EDGE ( 'NONE', *, *, #1809, .F. ) ; +#2530 = DIRECTION ( 'NONE', ( -0.0000000000000000000, 1.000000000000000000, -0.0000000000000000000 ) ) ; +#2531 = PRODUCT_DEFINITION_SHAPE ( 'NONE', 'NONE', #1811 ) ; +#2532 = CIRCLE ( 'NONE', #2, 2.000000000000001800 ) ; +#2533 = CC_DESIGN_APPROVAL ( #1910, ( #2428 ) ) ; +#2534 = ORIENTED_EDGE ( 'NONE', *, *, #865, .T. ) ; +#2535 = EDGE_CURVE ( 'NONE', #309, #2668, #274, .T. ) ; +#2536 = PERSON_AND_ORGANIZATION_ROLE ( 'classification_officer' ) ; +#2537 = EDGE_LOOP ( 'NONE', ( #507, #1760, #773, #2172 ) ) ; +#2538 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#2539 = DIRECTION ( 'NONE', ( 0.4627565364864406600, -0.8864854132692051600, -0.0000000000000000000 ) ) ; +#2540 = ORIENTED_EDGE ( 'NONE', *, *, #2133, .T. ) ; +#2541 = CARTESIAN_POINT ( 'NONE', ( 762.4999999999993200, 127.4999999999999400, 18.00000000000000400 ) ) ; +#2542 = ORIENTED_EDGE ( 'NONE', *, *, #704, .F. ) ; +#2543 = EDGE_CURVE ( 'NONE', #1739, #1115, #2087, .T. ) ; +#2544 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, -16.50000000000000000, 437.0000000000000000 ) ) ; +#2545 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#2546 =( REPRESENTATION_RELATIONSHIP ('NONE','NONE', #1116, #2020 ) REPRESENTATION_RELATIONSHIP_WITH_TRANSFORMATION ( #2341 )SHAPE_REPRESENTATION_RELATIONSHIP( ) ); +#2547 = APPROVAL_DATE_TIME ( #265, #2439 ) ; +#2548 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#2549 = APPROVAL_DATE_TIME ( #1784, #1572 ) ; +#2550 = EDGE_CURVE ( 'NONE', #827, #2634, #433, .T. ) ; +#2551 = CARTESIAN_POINT ( 'NONE', ( -375.0000000000006800, 87.49999999999991500, -0.001000000000001000100 ) ) ; +#2552 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#2553 = AXIS2_PLACEMENT_3D ( 'NONE', #1432, #1611, #2041 ) ; +#2554 = APPROVAL_ROLE ( '' ) ; +#2555 = FACE_BOUND ( 'NONE', #2109, .T. ) ; +#2556 = CARTESIAN_POINT ( 'NONE', ( 762.4999999999990900, -127.5000000000000600, 18.00000000000000400 ) ) ; +#2557 = CARTESIAN_POINT ( 'NONE', ( -2.000000000000666100, -5.526622187142835700E-014, 18.00000000000000400 ) ) ; +#2558 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#2559 = CARTESIAN_POINT ( 'NONE', ( -373.0000000000006800, 87.49999999999991500, 18.00000000000000400 ) ) ; +#2560 = APPROVAL_STATUS ( 'not_yet_approved' ) ; +#2561 = FACE_OUTER_BOUND ( 'NONE', #1969, .T. ) ; +#2562 = FACE_BOUND ( 'NONE', #479, .T. ) ; +#2563 = CARTESIAN_POINT ( 'NONE', ( 1.999999999999334300, 87.49999999999991500, 18.00000000000000400 ) ) ; +#2564 = ORIENTED_EDGE ( 'NONE', *, *, #1892, .F. ) ; +#2565 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2566 = EDGE_CURVE ( 'NONE', #1548, #987, #2395, .T. ) ; +#2567 = ADVANCED_FACE ( 'NONE', ( #150 ), #492, .T. ) ; +#2568 = CYLINDRICAL_SURFACE ( 'NONE', #2223, 2.000000000000001800 ) ; +#2569 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 1.000000000000000000, 0.0000000000000000000 ) ) ; +#2570 = DATE_TIME_ROLE ( 'classification_date' ) ; +#2571 = ORIENTED_EDGE ( 'NONE', *, *, #1860, .T. ) ; +#2572 = UNCERTAINTY_MEASURE_WITH_UNIT (LENGTH_MEASURE( 1.000000000000000100E-005 ), #597, 'distance_accuracy_value', 'NONE'); +#2573 = ORIENTED_EDGE ( 'NONE', *, *, #1032, .T. ) ; +#2574 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#2575 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2576 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #776 ) ; +#2577 = EDGE_CURVE ( 'NONE', #932, #864, #23, .T. ) ; +#2578 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#2579 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#2580 = AXIS2_PLACEMENT_3D ( 'NONE', #1652, #394, #1208 ) ; +#2581 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -1.000000000000000000, -0.0000000000000000000 ) ) ; +#2582 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#2583 = ORIENTED_EDGE ( 'NONE', *, *, #200, .F. ) ; +#2584 = APPROVAL_PERSON_ORGANIZATION ( #2552, #745, #2309 ) ; +#2585 = CC_DESIGN_SECURITY_CLASSIFICATION ( #1871, ( #2708 ) ) ; +#2586 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#2587 = EDGE_CURVE ( 'NONE', #1669, #2166, #90, .T. ) ; +#2588 = LINE ( 'NONE', #1398, #2024 ) ; +#2589 = PLANE ( 'NONE', #650 ) ; +#2590 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#2591 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#2592 = CARTESIAN_POINT ( 'NONE', ( -16.49999999999995700, 16.50000000000001400, 477.0000000000000000 ) ) ; +#2593 = FACE_OUTER_BOUND ( 'NONE', #2207, .T. ) ; +#2594 = ADVANCED_FACE ( 'NONE', ( #962 ), #237, .F. ) ; +#2595 = ORIENTED_EDGE ( 'NONE', *, *, #2176, .F. ) ; +#2596 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2597 = CIRCLE ( 'NONE', #187, 2.000000000000001800 ) ; +#2598 = CYLINDRICAL_SURFACE ( 'NONE', #220, 2.000000000000001800 ) ; +#2599 = ORIENTED_EDGE ( 'NONE', *, *, #1672, .T. ) ; +#2600 = AXIS2_PLACEMENT_3D ( 'NONE', #1195, #1992, #162 ) ; +#2601 = LINE ( 'NONE', #1050, #2496 ) ; +#2602 = FACE_BOUND ( 'NONE', #1982, .T. ) ; +#2603 = ORIENTED_EDGE ( 'NONE', *, *, #1809, .T. ) ; +#2604 = CARTESIAN_POINT ( 'NONE', ( 16.49999999999995700, 16.50000000000001400, 477.0000000000000000 ) ) ; +#2605 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#2606 = ORIENTED_EDGE ( 'NONE', *, *, #396, .F. ) ; +#2607 = DIRECTION ( 'NONE', ( -0.0000000000000000000, -0.0000000000000000000, -1.000000000000000000 ) ) ; +#2608 =( GEOMETRIC_REPRESENTATION_CONTEXT ( 3 ) GLOBAL_UNCERTAINTY_ASSIGNED_CONTEXT ( ( #2316 ) ) GLOBAL_UNIT_ASSIGNED_CONTEXT ( ( #1775, #539, #969 ) ) REPRESENTATION_CONTEXT ( 'NONE', 'WORKASPACE' ) ); +#2609 = EDGE_LOOP ( 'NONE', ( #737, #92, #2199, #2657 ) ) ; +#2610 = ORIENTED_EDGE ( 'NONE', *, *, #629, .F. ) ; +#2611 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#2612 = VERTEX_POINT ( 'NONE', #1746 ) ; +#2613 = CARTESIAN_POINT ( 'NONE', ( -762.5000000000005700, 127.4999999999999400, 0.0000000000000000000 ) ) ; +#2614 = ADVANCED_FACE ( 'NONE', ( #1534 ), #1179, .F. ) ; +#2615 = CARTESIAN_POINT ( 'NONE', ( -746.0000000000006800, 87.49999999999991500, 0.0000000000000000000 ) ) ; +#2616 = PERSON_AND_ORGANIZATION ( #1686, #694 ) ; +#2617 = AXIS2_PLACEMENT_3D ( 'NONE', #834, #1486, #828 ) ; +#2618 = VERTEX_POINT ( 'NONE', #1591 ) ; +#2619 = DIRECTION ( 'NONE', ( 0.0000000000000000000, -1.000000000000000000, 0.0000000000000000000 ) ) ; +#2620 = APPROVAL_DATE_TIME ( #1103, #2241 ) ; +#2621 = AXIS2_PLACEMENT_3D ( 'NONE', #1617, #2502, #825 ) ; +#2622 = APPROVAL_DATE_TIME ( #16, #606 ) ; +#2623 = DIRECTION ( 'NONE', ( 0.0000000000000000000, -1.000000000000000000, 0.0000000000000000000 ) ) ; +#2624 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2625 = PRODUCT_DEFINITION_SHAPE ( 'NONE', 'NONE', #1427 ) ; +#2626 = ADVANCED_FACE ( 'NONE', ( #2593 ), #145, .T. ) ; +#2627 = CC_DESIGN_SECURITY_CLASSIFICATION ( #1362, ( #2710 ) ) ; +#2628 = LINE ( 'NONE', #491, #1793 ) ; +#2629 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#2630 = SHAPE_REPRESENTATION_RELATIONSHIP ( 'NONE' , 'NONE' , #218, #179 ) ; +#2631 = ORIENTED_EDGE ( 'NONE', *, *, #502, .F. ) ; +#2632 = LINE ( 'NONE', #2362, #2363 ) ; +#2633 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#2634 = VERTEX_POINT ( 'NONE', #975 ) ; +#2635 = DIRECTION ( 'NONE', ( -0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#2636 = EDGE_CURVE ( 'NONE', #1328, #448, #2294, .T. ) ; +#2637 = FACE_BOUND ( 'NONE', #2516, .T. ) ; +#2638 = CLOSED_SHELL ( 'NONE', ( #1345, #1996, #719, #1711, #729, #322, #542, #415, #938, #1956, #1942, #2417, #1566, #1772, #1145, #922, #744, #2376, #1331, #1163, #526, #890, #1985, #2594, #2652, #701, #954, #484, #1530, #2388, #2478, #2404, #813, #1106, #2143, #1517 ) ) ; +#2639 = FACE_OUTER_BOUND ( 'NONE', #2077, .T. ) ; +#2640 = CARTESIAN_POINT ( 'NONE', ( 4.286263797015724300E-016, -16.50000000000000000, 440.5000000000000000 ) ) ; +#2641 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#2642 = ORIENTED_EDGE ( 'NONE', *, *, #1785, .F. ) ; +#2643 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2644 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2645 = PRODUCT_RELATED_PRODUCT_CATEGORY ( 'detail', '', ( #1263 ) ) ; +#2646 = ORIENTED_EDGE ( 'NONE', *, *, #970, .F. ) ; +#2647 = EDGE_CURVE ( 'NONE', #1123, #1025, #1758, .T. ) ; +#2648 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #2013 ) ; +#2649 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 18.00000000000001400 ) ) ; +#2650 = CARTESIAN_POINT ( 'NONE', ( -373.0000000000006800, -87.50000000000002800, -0.001000000000001000100 ) ) ; +#2651 = COORDINATED_UNIVERSAL_TIME_OFFSET ( 1, 0, .AHEAD. ) ; +#2652 = ADVANCED_FACE ( 'NONE', ( #926 ), #402, .F. ) ; +#2653 = VERTEX_POINT ( 'NONE', #122 ) ; +#2654 = LOCAL_TIME ( 23, 47, 4.000000000000000000, #494 ) ; +#2655 = AXIS2_PLACEMENT_3D ( 'NONE', #518, #1339, #2399 ) ; +#2656 = VECTOR ( 'NONE', #2319, 1000.000000000000000 ) ; +#2657 = ORIENTED_EDGE ( 'NONE', *, *, #77, .T. ) ; +#2658 = APPROVAL ( #2347, 'UNKNOWN' ) ; +#2659 = AXIS2_PLACEMENT_3D ( 'NONE', #2526, #234, #2096 ) ; +#2660 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2661 = CARTESIAN_POINT ( 'NONE', ( -744.4999999999998900, 98.99999999999997200, 18.00000000000000000 ) ) ; +#2662 = CYLINDRICAL_SURFACE ( 'NONE', #517, 2.000000000000001800 ) ; +#2663 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2664 = EDGE_LOOP ( 'NONE', ( #1697, #2306, #1046 ) ) ; +#2665 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, -1.000000000000000000 ) ) ; +#2666 = CIRCLE ( 'NONE', #377, 2.000000000000001800 ) ; +#2667 = LINE ( 'NONE', #2694, #2163 ) ; +#2668 = VERTEX_POINT ( 'NONE', #2182 ) ; +#2669 = LINE ( 'NONE', #228, #965 ) ; +#2670 = CARTESIAN_POINT ( 'NONE', ( 762.4999999999993200, 127.4999999999999400, 18.00000000000000400 ) ) ; +#2671 = LINE ( 'NONE', #1882, #1119 ) ; +#2672 = SECURITY_CLASSIFICATION_LEVEL ( 'unclassified' ) ; +#2673 = AXIS2_PLACEMENT_3D ( 'NONE', #508, #666, #2117 ) ; +#2674 = ORIENTED_EDGE ( 'NONE', *, *, #297, .T. ) ; +#2675 = DIRECTION ( 'NONE', ( 0.0000000000000000000, 0.0000000000000000000, 1.000000000000000000 ) ) ; +#2676 = ORIENTED_EDGE ( 'NONE', *, *, #2374, .T. ) ; +#2677 = CC_DESIGN_APPROVAL ( #2241, ( #2093 ) ) ; +#2678 = ORIENTED_EDGE ( 'NONE', *, *, #2636, .T. ) ; +#2679 = VERTEX_POINT ( 'NONE', #2212 ) ; +#2680 = DIRECTION ( 'NONE', ( 1.000000000000000000, 0.0000000000000000000, 0.0000000000000000000 ) ) ; +#2681 = CARTESIAN_POINT ( 'NONE', ( -1.040834085586084300E-014, 133.4999999999999400, 18.00000000000000000 ) ) ; +#2682 = AXIS2_PLACEMENT_3D ( 'NONE', #520, #1306, #1129 ) ; +#2683 = CARTESIAN_POINT ( 'NONE', ( 0.0000000000000000000, 5.750000000000005300, 433.5000000000000000 ) ) ; +#2684 = APPROVAL_PERSON_ORGANIZATION ( #2384, #2016, #1674 ) ; +#2685 = PLANE ( 'NONE', #1963 ) ; +#2686 = VERTEX_POINT ( 'NONE', #952 ) ; +#2687 = DATE_AND_TIME ( #722, #1496 ) ; +#2688 = PLANE ( 'NONE', #2173 ) ; +#2689 = EDGE_CURVE ( 'NONE', #321, #1193, #305, .T. ) ; +#2690 = PERSON_AND_ORGANIZATION_ROLE ( 'design_supplier' ) ; +#2691 = VECTOR ( 'NONE', #2665, 1000.000000000000000 ) ; +#2692 = DATE_AND_TIME ( #527, #2517 ) ; +#2693 = VECTOR ( 'NONE', #366, 1000.000000000000000 ) ; +#2694 = CARTESIAN_POINT ( 'NONE', ( 762.4999999999993200, 127.4999999999999400, 18.00000000000000400 ) ) ; +#2695 = AXIS2_PLACEMENT_3D ( 'NONE', #2063, #1201, #1011 ) ; +#2696 = CARTESIAN_POINT ( 'NONE', ( 762.5000000000000000, 149.9999999999999700, 0.0000000000000000000 ) ) ; +#2697 = LINE ( 'NONE', #1763, #463 ) ; +#2698 = EDGE_CURVE ( 'NONE', #2029, #1577, #853, .T. ) ; +#2699 = CALENDAR_DATE ( 2017, 7, 7 ) ; +#2700 = CARTESIAN_POINT ( 'NONE', ( -375.0000000000006800, 87.49999999999991500, 18.00000000000000400 ) ) ; +#2701 = ORIENTED_EDGE ( 'NONE', *, *, #1545, .T. ) ; +#2702 = DIRECTION ( 'NONE', ( 0.0000000000000000000, -1.000000000000000000, 0.0000000000000000000 ) ) ; +#2703 = CYLINDRICAL_SURFACE ( 'NONE', #1036, 2.000000000000001800 ) ; +#2704 = PERSON_AND_ORGANIZATION_ROLE ( 'design_owner' ) ; +#2705 = NEXT_ASSEMBLY_USAGE_OCCURRENCE ( 'NAUO1', ' ', ' ', #1427, #74, $ ) ; +#2706 = NEXT_ASSEMBLY_USAGE_OCCURRENCE ( 'NAUO2', ' ', ' ', #1427, #1721, $ ) ; +#2707 = NEXT_ASSEMBLY_USAGE_OCCURRENCE ( 'NAUO3', ' ', ' ', #1427, #1721, $ ) ; +#2708 = NEXT_ASSEMBLY_USAGE_OCCURRENCE ( 'NAUO4', ' ', ' ', #1427, #709, $ ) ; +#2709 = NEXT_ASSEMBLY_USAGE_OCCURRENCE ( 'NAUO5', ' ', ' ', #1427, #709, $ ) ; +#2710 = NEXT_ASSEMBLY_USAGE_OCCURRENCE ( 'NAUO6', ' ', ' ', #1427, #709, $ ) ; +#2711 = NEXT_ASSEMBLY_USAGE_OCCURRENCE ( 'NAUO7', ' ', ' ', #1427, #709, $ ) ; +#2712 = NEXT_ASSEMBLY_USAGE_OCCURRENCE ( 'NAUO8', ' ', ' ', #1427, #709, $ ) ; +#2713 = NEXT_ASSEMBLY_USAGE_OCCURRENCE ( 'NAUO9', ' ', ' ', #1427, #1811, $ ) ; +ENDSEC; +END-ISO-10303-21; diff --git a/_drawings/cup_holder/Basis.PDF b/_drawings/cup_holder/Basis.PDF new file mode 100644 index 0000000..cf926b5 Binary files /dev/null and b/_drawings/cup_holder/Basis.PDF differ diff --git a/_drawings/cup_holder/Basis.SLDDRW b/_drawings/cup_holder/Basis.SLDDRW new file mode 100644 index 0000000..2b3d54a Binary files /dev/null and b/_drawings/cup_holder/Basis.SLDDRW differ diff --git a/_drawings/cup_holder/Basis.sldprt b/_drawings/cup_holder/Basis.sldprt new file mode 100644 index 0000000..969d185 Binary files /dev/null and b/_drawings/cup_holder/Basis.sldprt differ diff --git a/_drawings/cup_holder/Dispenser.sldprt b/_drawings/cup_holder/Dispenser.sldprt new file mode 100644 index 0000000..972bb3e Binary files /dev/null and b/_drawings/cup_holder/Dispenser.sldprt differ diff --git a/_drawings/cup_holder/Glass_holder.PDF b/_drawings/cup_holder/Glass_holder.PDF new file mode 100644 index 0000000..c837b06 Binary files /dev/null and b/_drawings/cup_holder/Glass_holder.PDF differ diff --git a/_drawings/cup_holder/Glass_holder.SLDDRW b/_drawings/cup_holder/Glass_holder.SLDDRW new file mode 100644 index 0000000..a0d14ac Binary files /dev/null and b/_drawings/cup_holder/Glass_holder.SLDDRW differ diff --git a/_drawings/cup_holder/Glass_holder.sldprt b/_drawings/cup_holder/Glass_holder.sldprt new file mode 100644 index 0000000..bcf12ce Binary files /dev/null and b/_drawings/cup_holder/Glass_holder.sldprt differ diff --git a/_drawings/cup_holder/Group_5.sldprt b/_drawings/cup_holder/Group_5.sldprt new file mode 100644 index 0000000..861ee07 Binary files /dev/null and b/_drawings/cup_holder/Group_5.sldprt differ diff --git a/_drawings/cup_holder/Groupe_1.sldprt b/_drawings/cup_holder/Groupe_1.sldprt new file mode 100644 index 0000000..4db817f Binary files /dev/null and b/_drawings/cup_holder/Groupe_1.sldprt differ diff --git a/_drawings/cup_holder/Groupe_4.sldasm b/_drawings/cup_holder/Groupe_4.sldasm new file mode 100644 index 0000000..5b234b4 Binary files /dev/null and b/_drawings/cup_holder/Groupe_4.sldasm differ diff --git a/_drawings/cup_holder/Groupe_4.sldprt b/_drawings/cup_holder/Groupe_4.sldprt new file mode 100644 index 0000000..d9fe4ea Binary files /dev/null and b/_drawings/cup_holder/Groupe_4.sldprt differ diff --git a/_drawings/cup_holder/Groupe_5.sldasm b/_drawings/cup_holder/Groupe_5.sldasm new file mode 100644 index 0000000..d4180c1 Binary files /dev/null and b/_drawings/cup_holder/Groupe_5.sldasm differ diff --git a/_drawings/cup_holder/Groupe_5.sldprt b/_drawings/cup_holder/Groupe_5.sldprt new file mode 100644 index 0000000..9ce645e Binary files /dev/null and b/_drawings/cup_holder/Groupe_5.sldprt differ diff --git a/_drawings/cup_holder/Groupe_6.sldasm b/_drawings/cup_holder/Groupe_6.sldasm new file mode 100644 index 0000000..82881f6 Binary files /dev/null and b/_drawings/cup_holder/Groupe_6.sldasm differ diff --git a/_drawings/cup_holder/Groupe_7.sldprt b/_drawings/cup_holder/Groupe_7.sldprt new file mode 100644 index 0000000..8d438f6 Binary files /dev/null and b/_drawings/cup_holder/Groupe_7.sldprt differ diff --git a/_drawings/cup_holder/Groupe_8-1.sldprt b/_drawings/cup_holder/Groupe_8-1.sldprt new file mode 100644 index 0000000..3548470 Binary files /dev/null and b/_drawings/cup_holder/Groupe_8-1.sldprt differ diff --git a/_drawings/cup_holder/Groupe_8-2.sldprt b/_drawings/cup_holder/Groupe_8-2.sldprt new file mode 100644 index 0000000..436c33e Binary files /dev/null and b/_drawings/cup_holder/Groupe_8-2.sldprt differ diff --git a/_drawings/cup_holder/Groupe_8.sldasm b/_drawings/cup_holder/Groupe_8.sldasm new file mode 100644 index 0000000..4950e74 Binary files /dev/null and b/_drawings/cup_holder/Groupe_8.sldasm differ diff --git a/_drawings/cup_holder/Groupe_8.sldprt b/_drawings/cup_holder/Groupe_8.sldprt new file mode 100644 index 0000000..0b18f55 Binary files /dev/null and b/_drawings/cup_holder/Groupe_8.sldprt differ diff --git a/_drawings/cup_holder/Servo_HITEC_HS645MG.sldasm b/_drawings/cup_holder/Servo_HITEC_HS645MG.sldasm new file mode 100644 index 0000000..d4626d1 Binary files /dev/null and b/_drawings/cup_holder/Servo_HITEC_HS645MG.sldasm differ diff --git a/_drawings/cup_holder/Servo_holder.PDF b/_drawings/cup_holder/Servo_holder.PDF new file mode 100644 index 0000000..e0bfde4 Binary files /dev/null and b/_drawings/cup_holder/Servo_holder.PDF differ diff --git a/_drawings/cup_holder/Servo_holder.SLDDRW b/_drawings/cup_holder/Servo_holder.SLDDRW new file mode 100644 index 0000000..38b1af2 Binary files /dev/null and b/_drawings/cup_holder/Servo_holder.SLDDRW differ diff --git a/_drawings/cup_holder/Servo_holder.sldprt b/_drawings/cup_holder/Servo_holder.sldprt new file mode 100644 index 0000000..d222cb2 Binary files /dev/null and b/_drawings/cup_holder/Servo_holder.sldprt differ diff --git a/_drawings/cup_holder/Wall.PDF b/_drawings/cup_holder/Wall.PDF new file mode 100644 index 0000000..06417e6 Binary files /dev/null and b/_drawings/cup_holder/Wall.PDF differ diff --git a/_drawings/cup_holder/Wall.SLDDRW b/_drawings/cup_holder/Wall.SLDDRW new file mode 100644 index 0000000..eadd648 Binary files /dev/null and b/_drawings/cup_holder/Wall.SLDDRW differ diff --git a/_drawings/cup_holder/Wall.sldprt b/_drawings/cup_holder/Wall.sldprt new file mode 100644 index 0000000..f0924a2 Binary files /dev/null and b/_drawings/cup_holder/Wall.sldprt differ diff --git a/_drawings/cup_holder/_cup_holder.skp b/_drawings/cup_holder/_cup_holder.skp new file mode 100644 index 0000000..f41e89a Binary files /dev/null and b/_drawings/cup_holder/_cup_holder.skp differ diff --git a/_drawings/cup_holder/cup_holder.dwg b/_drawings/cup_holder/cup_holder.dwg new file mode 100644 index 0000000..576c4e2 Binary files /dev/null and b/_drawings/cup_holder/cup_holder.dwg differ diff --git a/_drawings/cup_holder/cup_holder.sldasm b/_drawings/cup_holder/cup_holder.sldasm new file mode 100644 index 0000000..738cd35 Binary files /dev/null and b/_drawings/cup_holder/cup_holder.sldasm differ diff --git a/_drawings/cup_holder/cup_holder.sldprt b/_drawings/cup_holder/cup_holder.sldprt new file mode 100644 index 0000000..b939988 Binary files /dev/null and b/_drawings/cup_holder/cup_holder.sldprt differ diff --git a/_drawings/wiring_diagram.jpg b/_drawings/wiring_diagram.jpg new file mode 100644 index 0000000..67e9b2e Binary files /dev/null and b/_drawings/wiring_diagram.jpg differ diff --git a/arduino code/AccelStepper.cpp b/arduino code/AccelStepper.cpp new file mode 100644 index 0000000..52fa566 --- /dev/null +++ b/arduino code/AccelStepper.cpp @@ -0,0 +1,644 @@ +// AccelStepper.cpp +// +// Copyright (C) 2009-2013 Mike McCauley +// $Id: AccelStepper.cpp,v 1.23 2016/08/09 00:39:10 mikem Exp mikem $ + +#include "AccelStepper.h" + +#if 0 +// Some debugging assistance +void dump(uint8_t* p, int l) +{ + int i; + + for (i = 0; i < l; i++) + { + Serial.print(p[i], HEX); + Serial.print(" "); + } + Serial.println(""); +} +#endif + +void AccelStepper::moveTo(long absolute) +{ + if (_targetPos != absolute) + { + _targetPos = absolute; + computeNewSpeed(); + // compute new n? + } +} + +void AccelStepper::move(long relative) +{ + moveTo(_currentPos + relative); +} + +// Implements steps according to the current step interval +// You must call this at least once per step +// returns true if a step occurred +boolean AccelStepper::runSpeed() +{ + // Dont do anything unless we actually have a step interval + if (!_stepInterval) + return false; + + unsigned long time = micros(); + if (time - _lastStepTime >= _stepInterval) + { + if (_direction == DIRECTION_CW) + { + // Clockwise + _currentPos += 1; + } + else + { + // Anticlockwise + _currentPos -= 1; + } + step(_currentPos); + + _lastStepTime = time; + return true; + } + else + { + return false; + } +} + +long AccelStepper::distanceToGo() +{ + return _targetPos - _currentPos; +} + +long AccelStepper::targetPosition() +{ + return _targetPos; +} + +long AccelStepper::currentPosition() +{ + return _currentPos; +} + +// Useful during initialisations or after initial positioning +// Sets speed to 0 +void AccelStepper::setCurrentPosition(long position) +{ + _targetPos = _currentPos = position; + _n = 0; + _stepInterval = 0; + _speed = 0.0; +} + +void AccelStepper::computeNewSpeed() +{ + long distanceTo = distanceToGo(); // +ve is clockwise from curent location + + long stepsToStop = (long)((_speed * _speed) / (2.0 * _acceleration)); // Equation 16 + + if (distanceTo == 0 && stepsToStop <= 1) + { + // We are at the target and its time to stop + _stepInterval = 0; + _speed = 0.0; + _n = 0; + return; + } + + if (distanceTo > 0) + { + // We are anticlockwise from the target + // Need to go clockwise from here, maybe decelerate now + if (_n > 0) + { + // Currently accelerating, need to decel now? Or maybe going the wrong way? + if ((stepsToStop >= distanceTo) || _direction == DIRECTION_CCW) + _n = -stepsToStop; // Start deceleration + } + else if (_n < 0) + { + // Currently decelerating, need to accel again? + if ((stepsToStop < distanceTo) && _direction == DIRECTION_CW) + _n = -_n; // Start accceleration + } + } + else if (distanceTo < 0) + { + // We are clockwise from the target + // Need to go anticlockwise from here, maybe decelerate + if (_n > 0) + { + // Currently accelerating, need to decel now? Or maybe going the wrong way? + if ((stepsToStop >= -distanceTo) || _direction == DIRECTION_CW) + _n = -stepsToStop; // Start deceleration + } + else if (_n < 0) + { + // Currently decelerating, need to accel again? + if ((stepsToStop < -distanceTo) && _direction == DIRECTION_CCW) + _n = -_n; // Start accceleration + } + } + + // Need to accelerate or decelerate + if (_n == 0) + { + // First step from stopped + _cn = _c0; + _direction = (distanceTo > 0) ? DIRECTION_CW : DIRECTION_CCW; + } + else + { + // Subsequent step. Works for accel (n is +_ve) and decel (n is -ve). + _cn = _cn - ((2.0 * _cn) / ((4.0 * _n) + 1)); // Equation 13 + _cn = max(_cn, _cmin); + } + _n++; + _stepInterval = _cn; + _speed = 1000000.0 / _cn; + if (_direction == DIRECTION_CCW) + _speed = -_speed; + +#if 0 + Serial.println(_speed); + Serial.println(_acceleration); + Serial.println(_cn); + Serial.println(_c0); + Serial.println(_n); + Serial.println(_stepInterval); + Serial.println(distanceTo); + Serial.println(stepsToStop); + Serial.println("-----"); +#endif +} + +// Run the motor to implement speed and acceleration in order to proceed to the target position +// You must call this at least once per step, preferably in your main loop +// If the motor is in the desired position, the cost is very small +// returns true if the motor is still running to the target position. +boolean AccelStepper::run() +{ + if (runSpeed()) + computeNewSpeed(); + return _speed != 0.0 || distanceToGo() != 0; +} + +AccelStepper::AccelStepper(uint8_t interface, uint8_t pin1, uint8_t pin2, uint8_t pin3, uint8_t pin4, bool enable) +{ + _interface = interface; + _currentPos = 0; + _targetPos = 0; + _speed = 0.0; + _maxSpeed = 1.0; + _acceleration = 0.0; + _sqrt_twoa = 1.0; + _stepInterval = 0; + _minPulseWidth = 1; + _enablePin = 0xff; + _lastStepTime = 0; + _pin[0] = pin1; + _pin[1] = pin2; + _pin[2] = pin3; + _pin[3] = pin4; + + // NEW + _n = 0; + _c0 = 0.0; + _cn = 0.0; + _cmin = 1.0; + _direction = DIRECTION_CCW; + + int i; + for (i = 0; i < 4; i++) + _pinInverted[i] = 0; + if (enable) + enableOutputs(); + // Some reasonable default + setAcceleration(1); +} + +AccelStepper::AccelStepper(void (*forward)(), void (*backward)()) +{ + _interface = 0; + _currentPos = 0; + _targetPos = 0; + _speed = 0.0; + _maxSpeed = 1.0; + _acceleration = 0.0; + _sqrt_twoa = 1.0; + _stepInterval = 0; + _minPulseWidth = 1; + _enablePin = 0xff; + _lastStepTime = 0; + _pin[0] = 0; + _pin[1] = 0; + _pin[2] = 0; + _pin[3] = 0; + _forward = forward; + _backward = backward; + + // NEW + _n = 0; + _c0 = 0.0; + _cn = 0.0; + _cmin = 1.0; + _direction = DIRECTION_CCW; + + int i; + for (i = 0; i < 4; i++) + _pinInverted[i] = 0; + // Some reasonable default + setAcceleration(1); +} + +void AccelStepper::setMaxSpeed(float speed) +{ + if (_maxSpeed != speed) + { + _maxSpeed = speed; + _cmin = 1000000.0 / speed; + // Recompute _n from current speed and adjust speed if accelerating or cruising + if (_n > 0) + { + _n = (long)((_speed * _speed) / (2.0 * _acceleration)); // Equation 16 + computeNewSpeed(); + } + } +} + +float AccelStepper::maxSpeed() +{ + return _maxSpeed; +} + +void AccelStepper::setAcceleration(float acceleration) +{ + if (acceleration == 0.0) + return; + if (_acceleration != acceleration) + { + // Recompute _n per Equation 17 + _n = _n * (_acceleration / acceleration); + // New c0 per Equation 7, with correction per Equation 15 + _c0 = 0.676 * sqrt(2.0 / acceleration) * 1000000.0; // Equation 15 + _acceleration = acceleration; + computeNewSpeed(); + } +} + +void AccelStepper::setSpeed(float speed) +{ + if (speed == _speed) + return; + speed = constrain(speed, -_maxSpeed, _maxSpeed); + if (speed == 0.0) + _stepInterval = 0; + else + { + _stepInterval = fabs(1000000.0 / speed); + _direction = (speed > 0.0) ? DIRECTION_CW : DIRECTION_CCW; + } + _speed = speed; +} + +float AccelStepper::speed() +{ + return _speed; +} + +// Subclasses can override +void AccelStepper::step(long step) +{ + switch (_interface) + { + case FUNCTION: + step0(step); + break; + + case DRIVER: + step1(step); + break; + + case FULL2WIRE: + step2(step); + break; + + case FULL3WIRE: + step3(step); + break; + + case FULL4WIRE: + step4(step); + break; + + case HALF3WIRE: + step6(step); + break; + + case HALF4WIRE: + step8(step); + break; + } +} + +// You might want to override this to implement eg serial output +// bit 0 of the mask corresponds to _pin[0] +// bit 1 of the mask corresponds to _pin[1] +// .... +void AccelStepper::setOutputPins(uint8_t mask) +{ + uint8_t numpins = 2; + if (_interface == FULL4WIRE || _interface == HALF4WIRE) + numpins = 4; + else if (_interface == FULL3WIRE || _interface == HALF3WIRE) + numpins = 3; + uint8_t i; + for (i = 0; i < numpins; i++) + digitalWrite(_pin[i], (mask & (1 << i)) ? (HIGH ^ _pinInverted[i]) : (LOW ^ _pinInverted[i])); +} + +// 0 pin step function (ie for functional usage) +void AccelStepper::step0(long step) +{ + if (_speed > 0) + _forward(); + else + _backward(); +} + +// 1 pin step function (ie for stepper drivers) +// This is passed the current step number (0 to 7) +// Subclasses can override +void AccelStepper::step1(long step) +{ + // _pin[0] is step, _pin[1] is direction + setOutputPins(_direction ? 0b10 : 0b00); // Set direction first else get rogue pulses + setOutputPins(_direction ? 0b11 : 0b01); // step HIGH + // Caution 200ns setup time + // Delay the minimum allowed pulse width + delayMicroseconds(_minPulseWidth); + setOutputPins(_direction ? 0b10 : 0b00); // step LOW + +} + + +// 2 pin step function +// This is passed the current step number (0 to 7) +// Subclasses can override +void AccelStepper::step2(long step) +{ + switch (step & 0x3) + { + case 0: /* 01 */ + setOutputPins(0b10); + break; + + case 1: /* 11 */ + setOutputPins(0b11); + break; + + case 2: /* 10 */ + setOutputPins(0b01); + break; + + case 3: /* 00 */ + setOutputPins(0b00); + break; + } +} +// 3 pin step function +// This is passed the current step number (0 to 7) +// Subclasses can override +void AccelStepper::step3(long step) +{ + switch (step % 3) + { + case 0: // 100 + setOutputPins(0b100); + break; + + case 1: // 001 + setOutputPins(0b001); + break; + + case 2: //010 + setOutputPins(0b010); + break; + + } +} + +// 4 pin step function for half stepper +// This is passed the current step number (0 to 7) +// Subclasses can override +void AccelStepper::step4(long step) +{ + switch (step & 0x3) + { + case 0: // 1010 + setOutputPins(0b0101); + break; + + case 1: // 0110 + setOutputPins(0b0110); + break; + + case 2: //0101 + setOutputPins(0b1010); + break; + + case 3: //1001 + setOutputPins(0b1001); + break; + } +} + +// 3 pin half step function +// This is passed the current step number (0 to 7) +// Subclasses can override +void AccelStepper::step6(long step) +{ + switch (step % 6) + { + case 0: // 100 + setOutputPins(0b100); + break; + + case 1: // 101 + setOutputPins(0b101); + break; + + case 2: // 001 + setOutputPins(0b001); + break; + + case 3: // 011 + setOutputPins(0b011); + break; + + case 4: // 010 + setOutputPins(0b010); + break; + + case 5: // 011 + setOutputPins(0b110); + break; + + } +} + +// 4 pin half step function +// This is passed the current step number (0 to 7) +// Subclasses can override +void AccelStepper::step8(long step) +{ + switch (step & 0x7) + { + case 0: // 1000 + setOutputPins(0b0001); + break; + + case 1: // 1010 + setOutputPins(0b0101); + break; + + case 2: // 0010 + setOutputPins(0b0100); + break; + + case 3: // 0110 + setOutputPins(0b0110); + break; + + case 4: // 0100 + setOutputPins(0b0010); + break; + + case 5: //0101 + setOutputPins(0b1010); + break; + + case 6: // 0001 + setOutputPins(0b1000); + break; + + case 7: //1001 + setOutputPins(0b1001); + break; + } +} + +// Prevents power consumption on the outputs +void AccelStepper::disableOutputs() +{ + if (! _interface) return; + + setOutputPins(0); // Handles inversion automatically + if (_enablePin != 0xff) + { + pinMode(_enablePin, OUTPUT); + digitalWrite(_enablePin, LOW ^ _enableInverted); + } +} + +void AccelStepper::enableOutputs() +{ + if (! _interface) + return; + + pinMode(_pin[0], OUTPUT); + pinMode(_pin[1], OUTPUT); + if (_interface == FULL4WIRE || _interface == HALF4WIRE) + { + pinMode(_pin[2], OUTPUT); + pinMode(_pin[3], OUTPUT); + } + else if (_interface == FULL3WIRE || _interface == HALF3WIRE) + { + pinMode(_pin[2], OUTPUT); + } + + if (_enablePin != 0xff) + { + pinMode(_enablePin, OUTPUT); + digitalWrite(_enablePin, HIGH ^ _enableInverted); + } +} + +void AccelStepper::setMinPulseWidth(unsigned int minWidth) +{ + _minPulseWidth = minWidth; +} + +void AccelStepper::setEnablePin(uint8_t enablePin) +{ + _enablePin = enablePin; + + // This happens after construction, so init pin now. + if (_enablePin != 0xff) + { + pinMode(_enablePin, OUTPUT); + digitalWrite(_enablePin, HIGH ^ _enableInverted); + } +} + +void AccelStepper::setPinsInverted(bool directionInvert, bool stepInvert, bool enableInvert) +{ + _pinInverted[0] = stepInvert; + _pinInverted[1] = directionInvert; + _enableInverted = enableInvert; +} + +void AccelStepper::setPinsInverted(bool pin1Invert, bool pin2Invert, bool pin3Invert, bool pin4Invert, bool enableInvert) +{ + _pinInverted[0] = pin1Invert; + _pinInverted[1] = pin2Invert; + _pinInverted[2] = pin3Invert; + _pinInverted[3] = pin4Invert; + _enableInverted = enableInvert; +} + +// Blocks until the target position is reached and stopped +void AccelStepper::runToPosition() +{ + while (run()) + ; +} + +boolean AccelStepper::runSpeedToPosition() +{ + if (_targetPos == _currentPos) + return false; + if (_targetPos >_currentPos) + _direction = DIRECTION_CW; + else + _direction = DIRECTION_CCW; + return runSpeed(); +} + +// Blocks until the new target position is reached +void AccelStepper::runToNewPosition(long position) +{ + moveTo(position); + runToPosition(); +} + +void AccelStepper::stop() +{ + if (_speed != 0.0) + { + long stepsToStop = (long)((_speed * _speed) / (2.0 * _acceleration)) + 1; // Equation 16 (+integer rounding) + if (_speed > 0) + move(stepsToStop); + else + move(-stepsToStop); + } +} + +bool AccelStepper::isRunning() +{ + return !(_speed == 0.0 && _targetPos == _currentPos); +} diff --git a/arduino code/AccelStepper.h b/arduino code/AccelStepper.h new file mode 100644 index 0000000..d3bbd6b --- /dev/null +++ b/arduino code/AccelStepper.h @@ -0,0 +1,714 @@ +// AccelStepper.h +// +/// \mainpage AccelStepper library for Arduino +/// +/// This is the Arduino AccelStepper library. +/// It provides an object-oriented interface for 2, 3 or 4 pin stepper motors. +/// +/// The standard Arduino IDE includes the Stepper library +/// (http://arduino.cc/en/Reference/Stepper) for stepper motors. It is +/// perfectly adequate for simple, single motor applications. +/// +/// AccelStepper significantly improves on the standard Arduino Stepper library in several ways: +/// \li Supports acceleration and deceleration +/// \li Supports multiple simultaneous steppers, with independent concurrent stepping on each stepper +/// \li API functions never delay() or block +/// \li Supports 2, 3 and 4 wire steppers, plus 3 and 4 wire half steppers. +/// \li Supports alternate stepping functions to enable support of AFMotor (https://github.com/adafruit/Adafruit-Motor-Shield-library) +/// \li Supports stepper drivers such as the Sparkfun EasyDriver (based on 3967 driver chip) +/// \li Very slow speeds are supported +/// \li Extensive API +/// \li Subclass support +/// +/// The latest version of this documentation can be downloaded from +/// http://www.airspayce.com/mikem/arduino/AccelStepper +/// The version of the package that this documentation refers to can be downloaded +/// from http://www.airspayce.com/mikem/arduino/AccelStepper/AccelStepper-1.53.zip +/// +/// Example Arduino programs are included to show the main modes of use. +/// +/// You can also find online help and discussion at http://groups.google.com/group/accelstepper +/// Please use that group for all questions and discussions on this topic. +/// Do not contact the author directly, unless it is to discuss commercial licensing. +/// Before asking a question or reporting a bug, please read http://www.catb.org/esr/faqs/smart-questions.html +/// +/// Tested on Arduino Diecimila and Mega with arduino-0018 & arduino-0021 +/// on OpenSuSE 11.1 and avr-libc-1.6.1-1.15, +/// cross-avr-binutils-2.19-9.1, cross-avr-gcc-4.1.3_20080612-26.5. +/// Tested on Teensy http://www.pjrc.com/teensy including Teensy 3.1 built using Arduino IDE 1.0.5 with +/// teensyduino addon 1.18 and later. +/// +/// \par Installation +/// +/// Install in the usual way: unzip the distribution zip file to the libraries +/// sub-folder of your sketchbook. +/// +/// \par Theory +/// +/// This code uses speed calculations as described in +/// "Generate stepper-motor speed profiles in real time" by David Austin +/// http://fab.cba.mit.edu/classes/MIT/961.09/projects/i0/Stepper_Motor_Speed_Profile.pdf or +/// http://www.embedded.com/design/mcus-processors-and-socs/4006438/Generate-stepper-motor-speed-profiles-in-real-time or +/// http://web.archive.org/web/20140705143928/http://fab.cba.mit.edu/classes/MIT/961.09/projects/i0/Stepper_Motor_Speed_Profile.pdf +/// with the exception that AccelStepper uses steps per second rather than radians per second +/// (because we dont know the step angle of the motor) +/// An initial step interval is calculated for the first step, based on the desired acceleration +/// On subsequent steps, shorter step intervals are calculated based +/// on the previous step until max speed is achieved. +/// +/// \par Adafruit Motor Shield V2 +/// +/// The included examples AFMotor_* are for Adafruit Motor Shield V1 and do not work with Adafruit Motor Shield V2. +/// See https://github.com/adafruit/Adafruit_Motor_Shield_V2_Library for examples that work with Adafruit Motor Shield V2. +/// +/// \par Donations +/// +/// This library is offered under a free GPL license for those who want to use it that way. +/// We try hard to keep it up to date, fix bugs +/// and to provide free support. If this library has helped you save time or money, please consider donating at +/// http://www.airspayce.com or here: +/// +/// \htmlonly
\endhtmlonly +/// +/// \par Trademarks +/// +/// AccelStepper is a trademark of AirSpayce Pty Ltd. The AccelStepper mark was first used on April 26 2010 for +/// international trade, and is used only in relation to motor control hardware and software. +/// It is not to be confused with any other similar marks covering other goods and services. +/// +/// \par Copyright +/// +/// This software is Copyright (C) 2010 Mike McCauley. Use is subject to license +/// conditions. The main licensing options available are GPL V2 or Commercial: +/// +/// \par Open Source Licensing GPL V2 +/// This is the appropriate option if you want to share the source code of your +/// application with everyone you distribute it to, and you also want to give them +/// the right to share who uses it. If you wish to use this software under Open +/// Source Licensing, you must contribute all your source code to the open source +/// community in accordance with the GPL Version 2 when your application is +/// distributed. See http://www.gnu.org/copyleft/gpl.html +/// +/// \par Commercial Licensing +/// This is the appropriate option if you are creating proprietary applications +/// and you are not prepared to distribute and share the source code of your +/// application. Contact info@airspayce.com for details. +/// +/// \par Revision History +/// \version 1.0 Initial release +/// +/// \version 1.1 Added speed() function to get the current speed. +/// \version 1.2 Added runSpeedToPosition() submitted by Gunnar Arndt. +/// \version 1.3 Added support for stepper drivers (ie with Step and Direction inputs) with _pins == 1 +/// \version 1.4 Added functional contructor to support AFMotor, contributed by Limor, with example sketches. +/// \version 1.5 Improvements contributed by Peter Mousley: Use of microsecond steps and other speed improvements +/// to increase max stepping speed to about 4kHz. New option for user to set the min allowed pulse width. +/// Added checks for already running at max speed and skip further calcs if so. +/// \version 1.6 Fixed a problem with wrapping of microsecond stepping that could cause stepping to hang. +/// Reported by Sandy Noble. +/// Removed redundant _lastRunTime member. +/// \version 1.7 Fixed a bug where setCurrentPosition() did not always work as expected. +/// Reported by Peter Linhart. +/// \version 1.8 Added support for 4 pin half-steppers, requested by Harvey Moon +/// \version 1.9 setCurrentPosition() now also sets motor speed to 0. +/// \version 1.10 Builds on Arduino 1.0 +/// \version 1.11 Improvments from Michael Ellison: +/// Added optional enable line support for stepper drivers +/// Added inversion for step/direction/enable lines for stepper drivers +/// \version 1.12 Announce Google Group +/// \version 1.13 Improvements to speed calculation. Cost of calculation is now less in the worst case, +/// and more or less constant in all cases. This should result in slightly beter high speed performance, and +/// reduce anomalous speed glitches when other steppers are accelerating. +/// However, its hard to see how to replace the sqrt() required at the very first step from 0 speed. +/// \version 1.14 Fixed a problem with compiling under arduino 0021 reported by EmbeddedMan +/// \version 1.15 Fixed a problem with runSpeedToPosition which did not correctly handle +/// running backwards to a smaller target position. Added examples +/// \version 1.16 Fixed some cases in the code where abs() was used instead of fabs(). +/// \version 1.17 Added example ProportionalControl +/// \version 1.18 Fixed a problem: If one calls the funcion runSpeed() when Speed is zero, it makes steps +/// without counting. reported by Friedrich, Klappenbach. +/// \version 1.19 Added MotorInterfaceType and symbolic names for the number of pins to use +/// for the motor interface. Updated examples to suit. +/// Replaced individual pin assignment variables _pin1, _pin2 etc with array _pin[4]. +/// _pins member changed to _interface. +/// Added _pinInverted array to simplify pin inversion operations. +/// Added new function setOutputPins() which sets the motor output pins. +/// It can be overridden in order to provide, say, serial output instead of parallel output +/// Some refactoring and code size reduction. +/// \version 1.20 Improved documentation and examples to show need for correctly +/// specifying AccelStepper::FULL4WIRE and friends. +/// \version 1.21 Fixed a problem where desiredSpeed could compute the wrong step acceleration +/// when _speed was small but non-zero. Reported by Brian Schmalz. +/// Precompute sqrt_twoa to improve performance and max possible stepping speed +/// \version 1.22 Added Bounce.pde example +/// Fixed a problem where calling moveTo(), setMaxSpeed(), setAcceleration() more +/// frequently than the step time, even +/// with the same values, would interfere with speed calcs. Now a new speed is computed +/// only if there was a change in the set value. Reported by Brian Schmalz. +/// \version 1.23 Rewrite of the speed algorithms in line with +/// http://fab.cba.mit.edu/classes/MIT/961.09/projects/i0/Stepper_Motor_Speed_Profile.pdf +/// Now expect smoother and more linear accelerations and decelerations. The desiredSpeed() +/// function was removed. +/// \version 1.24 Fixed a problem introduced in 1.23: with runToPosition, which did never returned +/// \version 1.25 Now ignore attempts to set acceleration to 0.0 +/// \version 1.26 Fixed a problem where certina combinations of speed and accelration could cause +/// oscillation about the target position. +/// \version 1.27 Added stop() function to stop as fast as possible with current acceleration parameters. +/// Also added new Quickstop example showing its use. +/// \version 1.28 Fixed another problem where certain combinations of speed and accelration could cause +/// oscillation about the target position. +/// Added support for 3 wire full and half steppers such as Hard Disk Drive spindle. +/// Contributed by Yuri Ivatchkovitch. +/// \version 1.29 Fixed a problem that could cause a DRIVER stepper to continually step +/// with some sketches. Reported by Vadim. +/// \version 1.30 Fixed a problem that could cause stepper to back up a few steps at the end of +/// accelerated travel with certain speeds. Reported and patched by jolo. +/// \version 1.31 Updated author and distribution location details to airspayce.com +/// \version 1.32 Fixed a problem with enableOutputs() and setEnablePin on Arduino Due that +/// prevented the enable pin changing stae correctly. Reported by Duane Bishop. +/// \version 1.33 Fixed an error in example AFMotor_ConstantSpeed.pde did not setMaxSpeed(); +/// Fixed a problem that caused incorrect pin sequencing of FULL3WIRE and HALF3WIRE. +/// Unfortunately this meant changing the signature for all step*() functions. +/// Added example MotorShield, showing how to use AdaFruit Motor Shield to control +/// a 3 phase motor such as a HDD spindle motor (and without using the AFMotor library. +/// \version 1.34 Added setPinsInverted(bool pin1Invert, bool pin2Invert, bool pin3Invert, bool pin4Invert, bool enableInvert) +/// to allow inversion of 2, 3 and 4 wire stepper pins. Requested by Oleg. +/// \version 1.35 Removed default args from setPinsInverted(bool, bool, bool, bool, bool) to prevent ambiguity with +/// setPinsInverted(bool, bool, bool). Reported by Mac Mac. +/// \version 1.36 Changed enableOutputs() and disableOutputs() to be virtual so can be overridden. +/// Added new optional argument 'enable' to constructor, which allows you toi disable the +/// automatic enabling of outputs at construction time. Suggested by Guido. +/// \version 1.37 Fixed a problem with step1 that could cause a rogue step in the +/// wrong direction (or not, +/// depending on the setup-time requirements of the connected hardware). +/// Reported by Mark Tillotson. +/// \version 1.38 run() function incorrectly always returned true. Updated function and doc so it returns true +/// if the motor is still running to the target position. +/// \version 1.39 Updated typos in keywords.txt, courtesey Jon Magill. +/// \version 1.40 Updated documentation, including testing on Teensy 3.1 +/// \version 1.41 Fixed an error in the acceleration calculations, resulting in acceleration of haldf the intended value +/// \version 1.42 Improved support for FULL3WIRE and HALF3WIRE output pins. These changes were in Yuri's original +/// contribution but did not make it into production.
+/// \version 1.43 Added DualMotorShield example. Shows how to use AccelStepper to control 2 x 2 phase steppers using the +/// Itead Studio Arduino Dual Stepper Motor Driver Shield model IM120417015.
+/// \version 1.44 examples/DualMotorShield/DualMotorShield.ino examples/DualMotorShield/DualMotorShield.pde +/// was missing from the distribution.
+/// \version 1.45 Fixed a problem where if setAcceleration was not called, there was no default +/// acceleration. Reported by Michael Newman.
+/// \version 1.45 Fixed inaccuracy in acceleration rate by using Equation 15, suggested by Sebastian Gracki.
+/// Performance improvements in runSpeed suggested by Jaakko Fagerlund.
+/// \version 1.46 Fixed error in documentation for runToPosition(). +/// Reinstated time calculations in runSpeed() since new version is reported +/// not to work correctly under some circumstances. Reported by Oleg V Gavva.
+/// \version 1.48 2015-08-25 +/// Added new class MultiStepper that can manage multiple AccelSteppers, +/// and cause them all to move +/// to selected positions at such a (constant) speed that they all arrive at their +/// target position at the same time. Suitable for X-Y flatbeds etc.
+/// Added new method maxSpeed() to AccelStepper to return the currently configured maxSpeed.
+/// \version 1.49 2016-01-02 +/// Testing with VID28 series instrument stepper motors and EasyDriver. +/// OK, although with light pointers +/// and slow speeds like 180 full steps per second the motor movement can be erratic, +/// probably due to some mechanical resonance. Best to accelerate through this speed.
+/// Added isRunning().
+/// \version 1.50 2016-02-25 +/// AccelStepper::disableOutputs now sets the enable pion to OUTPUT mode if the enable pin is defined. +/// Patch from Piet De Jong.
+/// Added notes about the fact that AFMotor_* examples do not work with Adafruit Motor Shield V2.
+/// \version 1.51 2016-03-24 +/// Fixed a problem reported by gregor: when resetting the stepper motor position using setCurrentPosition() the +/// stepper speed is reset by setting _stepInterval to 0, but _speed is not +/// reset. this results in the stepper motor not starting again when calling +/// setSpeed() with the same speed the stepper was set to before. +/// \version 1.52 2016-08-09 +/// Added MultiStepper to keywords.txt. +/// Improvements to efficiency of AccelStepper::runSpeed() as suggested by David Grayson. +/// Improvements to speed accuracy as suggested by David Grayson. +/// \verwsion 1.53 2016-08-14 +/// Backed out Improvements to speed accuracy from 1.52 as it did not work correctly. +/// +/// \author Mike McCauley (mikem@airspayce.com) DO NOT CONTACT THE AUTHOR DIRECTLY: USE THE LISTS +// Copyright (C) 2009-2013 Mike McCauley +// $Id: AccelStepper.h,v 1.26 2016/08/09 00:39:10 mikem Exp mikem $ + +#ifndef AccelStepper_h +#define AccelStepper_h + +#include +#if ARDUINO >= 100 +#include +#else +#include +#include +#endif + +// These defs cause trouble on some versions of Arduino +#undef round + +///////////////////////////////////////////////////////////////////// +/// \class AccelStepper AccelStepper.h +/// \brief Support for stepper motors with acceleration etc. +/// +/// This defines a single 2 or 4 pin stepper motor, or stepper moter with fdriver chip, with optional +/// acceleration, deceleration, absolute positioning commands etc. Multiple +/// simultaneous steppers are supported, all moving +/// at different speeds and accelerations. +/// +/// \par Operation +/// This module operates by computing a step time in microseconds. The step +/// time is recomputed after each step and after speed and acceleration +/// parameters are changed by the caller. The time of each step is recorded in +/// microseconds. The run() function steps the motor once if a new step is due. +/// The run() function must be called frequently until the motor is in the +/// desired position, after which time run() will do nothing. +/// +/// \par Positioning +/// Positions are specified by a signed long integer. At +/// construction time, the current position of the motor is consider to be 0. Positive +/// positions are clockwise from the initial position; negative positions are +/// anticlockwise. The current position can be altered for instance after +/// initialization positioning. +/// +/// \par Caveats +/// This is an open loop controller: If the motor stalls or is oversped, +/// AccelStepper will not have a correct +/// idea of where the motor really is (since there is no feedback of the motor's +/// real position. We only know where we _think_ it is, relative to the +/// initial starting point). +/// +/// \par Performance +/// The fastest motor speed that can be reliably supported is about 4000 steps per +/// second at a clock frequency of 16 MHz on Arduino such as Uno etc. +/// Faster processors can support faster stepping speeds. +/// However, any speed less than that +/// down to very slow speeds (much less than one per second) are also supported, +/// provided the run() function is called frequently enough to step the motor +/// whenever required for the speed set. +/// Calling setAcceleration() is expensive, +/// since it requires a square root to be calculated. +/// +/// Gregor Christandl reports that with an Arduino Due and a simple test program, +/// he measured 43163 steps per second using runSpeed(), +/// and 16214 steps per second using run(); +class AccelStepper +{ +public: + /// \brief Symbolic names for number of pins. + /// Use this in the pins argument the AccelStepper constructor to + /// provide a symbolic name for the number of pins + /// to use. + typedef enum + { + FUNCTION = 0, ///< Use the functional interface, implementing your own driver functions (internal use only) + DRIVER = 1, ///< Stepper Driver, 2 driver pins required + FULL2WIRE = 2, ///< 2 wire stepper, 2 motor pins required + FULL3WIRE = 3, ///< 3 wire stepper, such as HDD spindle, 3 motor pins required + FULL4WIRE = 4, ///< 4 wire full stepper, 4 motor pins required + HALF3WIRE = 6, ///< 3 wire half stepper, such as HDD spindle, 3 motor pins required + HALF4WIRE = 8 ///< 4 wire half stepper, 4 motor pins required + } MotorInterfaceType; + + /// Constructor. You can have multiple simultaneous steppers, all moving + /// at different speeds and accelerations, provided you call their run() + /// functions at frequent enough intervals. Current Position is set to 0, target + /// position is set to 0. MaxSpeed and Acceleration default to 1.0. + /// The motor pins will be initialised to OUTPUT mode during the + /// constructor by a call to enableOutputs(). + /// \param[in] interface Number of pins to interface to. 1, 2, 4 or 8 are + /// supported, but it is preferred to use the \ref MotorInterfaceType symbolic names. + /// AccelStepper::DRIVER (1) means a stepper driver (with Step and Direction pins). + /// If an enable line is also needed, call setEnablePin() after construction. + /// You may also invert the pins using setPinsInverted(). + /// AccelStepper::FULL2WIRE (2) means a 2 wire stepper (2 pins required). + /// AccelStepper::FULL3WIRE (3) means a 3 wire stepper, such as HDD spindle (3 pins required). + /// AccelStepper::FULL4WIRE (4) means a 4 wire stepper (4 pins required). + /// AccelStepper::HALF3WIRE (6) means a 3 wire half stepper, such as HDD spindle (3 pins required) + /// AccelStepper::HALF4WIRE (8) means a 4 wire half stepper (4 pins required) + /// Defaults to AccelStepper::FULL4WIRE (4) pins. + /// \param[in] pin1 Arduino digital pin number for motor pin 1. Defaults + /// to pin 2. For a AccelStepper::DRIVER (interface==1), + /// this is the Step input to the driver. Low to high transition means to step) + /// \param[in] pin2 Arduino digital pin number for motor pin 2. Defaults + /// to pin 3. For a AccelStepper::DRIVER (interface==1), + /// this is the Direction input the driver. High means forward. + /// \param[in] pin3 Arduino digital pin number for motor pin 3. Defaults + /// to pin 4. + /// \param[in] pin4 Arduino digital pin number for motor pin 4. Defaults + /// to pin 5. + /// \param[in] enable If this is true (the default), enableOutputs() will be called to enable + /// the output pins at construction time. + AccelStepper(uint8_t interface = AccelStepper::FULL4WIRE, uint8_t pin1 = 2, uint8_t pin2 = 3, uint8_t pin3 = 4, uint8_t pin4 = 5, bool enable = true); + + /// Alternate Constructor which will call your own functions for forward and backward steps. + /// You can have multiple simultaneous steppers, all moving + /// at different speeds and accelerations, provided you call their run() + /// functions at frequent enough intervals. Current Position is set to 0, target + /// position is set to 0. MaxSpeed and Acceleration default to 1.0. + /// Any motor initialization should happen before hand, no pins are used or initialized. + /// \param[in] forward void-returning procedure that will make a forward step + /// \param[in] backward void-returning procedure that will make a backward step + AccelStepper(void (*forward)(), void (*backward)()); + + /// Set the target position. The run() function will try to move the motor (at most one step per call) + /// from the current position to the target position set by the most + /// recent call to this function. Caution: moveTo() also recalculates the speed for the next step. + /// If you are trying to use constant speed movements, you should call setSpeed() after calling moveTo(). + /// \param[in] absolute The desired absolute position. Negative is + /// anticlockwise from the 0 position. + void moveTo(long absolute); + + /// Set the target position relative to the current position + /// \param[in] relative The desired position relative to the current position. Negative is + /// anticlockwise from the current position. + void move(long relative); + + /// Poll the motor and step it if a step is due, implementing + /// accelerations and decelerations to acheive the target position. You must call this as + /// frequently as possible, but at least once per minimum step time interval, + /// preferably in your main loop. Note that each call to run() will make at most one step, and then only when a step is due, + /// based on the current speed and the time since the last step. + /// \return true if the motor is still running to the target position. + boolean run(); + + /// Poll the motor and step it if a step is due, implementing a constant + /// speed as set by the most recent call to setSpeed(). You must call this as + /// frequently as possible, but at least once per step interval, + /// \return true if the motor was stepped. + boolean runSpeed(); + + /// Sets the maximum permitted speed. The run() function will accelerate + /// up to the speed set by this function. + /// Caution: the maximum speed achievable depends on your processor and clock speed. + /// \param[in] speed The desired maximum speed in steps per second. Must + /// be > 0. Caution: Speeds that exceed the maximum speed supported by the processor may + /// Result in non-linear accelerations and decelerations. + void setMaxSpeed(float speed); + + /// returns the maximum speed configured for this stepper + /// that was previously set by setMaxSpeed(); + /// \return The currently configured maximum speed + float maxSpeed(); + + /// Sets the acceleration/deceleration rate. + /// \param[in] acceleration The desired acceleration in steps per second + /// per second. Must be > 0.0. This is an expensive call since it requires a square + /// root to be calculated. Dont call more ofthen than needed + void setAcceleration(float acceleration); + + /// Sets the desired constant speed for use with runSpeed(). + /// \param[in] speed The desired constant speed in steps per + /// second. Positive is clockwise. Speeds of more than 1000 steps per + /// second are unreliable. Very slow speeds may be set (eg 0.00027777 for + /// once per hour, approximately. Speed accuracy depends on the Arduino + /// crystal. Jitter depends on how frequently you call the runSpeed() function. + void setSpeed(float speed); + + /// The most recently set speed + /// \return the most recent speed in steps per second + float speed(); + + /// The distance from the current position to the target position. + /// \return the distance from the current position to the target position + /// in steps. Positive is clockwise from the current position. + long distanceToGo(); + + /// The most recently set target position. + /// \return the target position + /// in steps. Positive is clockwise from the 0 position. + long targetPosition(); + + /// The currently motor position. + /// \return the current motor position + /// in steps. Positive is clockwise from the 0 position. + long currentPosition(); + + /// Resets the current position of the motor, so that wherever the motor + /// happens to be right now is considered to be the new 0 position. Useful + /// for setting a zero position on a stepper after an initial hardware + /// positioning move. + /// Has the side effect of setting the current motor speed to 0. + /// \param[in] position The position in steps of wherever the motor + /// happens to be right now. + void setCurrentPosition(long position); + + /// Moves the motor (with acceleration/deceleration) + /// to the target position and blocks until it is at + /// position. Dont use this in event loops, since it blocks. + void runToPosition(); + + /// Runs at the currently selected speed until the target position is reached + /// Does not implement accelerations. + /// \return true if it stepped + boolean runSpeedToPosition(); + + /// Moves the motor (with acceleration/deceleration) + /// to the new target position and blocks until it is at + /// position. Dont use this in event loops, since it blocks. + /// \param[in] position The new target position. + void runToNewPosition(long position); + + /// Sets a new target position that causes the stepper + /// to stop as quickly as possible, using the current speed and acceleration parameters. + void stop(); + + /// Disable motor pin outputs by setting them all LOW + /// Depending on the design of your electronics this may turn off + /// the power to the motor coils, saving power. + /// This is useful to support Arduino low power modes: disable the outputs + /// during sleep and then reenable with enableOutputs() before stepping + /// again. + /// If the enable Pin is defined, sets it to OUTPUT mode and clears the pin to disabled. + virtual void disableOutputs(); + + /// Enable motor pin outputs by setting the motor pins to OUTPUT + /// mode. Called automatically by the constructor. + /// If the enable Pin is defined, sets it to OUTPUT mode and sets the pin to enabled. + virtual void enableOutputs(); + + /// Sets the minimum pulse width allowed by the stepper driver. The minimum practical pulse width is + /// approximately 20 microseconds. Times less than 20 microseconds + /// will usually result in 20 microseconds or so. + /// \param[in] minWidth The minimum pulse width in microseconds. + void setMinPulseWidth(unsigned int minWidth); + + /// Sets the enable pin number for stepper drivers. + /// 0xFF indicates unused (default). + /// Otherwise, if a pin is set, the pin will be turned on when + /// enableOutputs() is called and switched off when disableOutputs() + /// is called. + /// \param[in] enablePin Arduino digital pin number for motor enable + /// \sa setPinsInverted + void setEnablePin(uint8_t enablePin = 0xff); + + /// Sets the inversion for stepper driver pins + /// \param[in] directionInvert True for inverted direction pin, false for non-inverted + /// \param[in] stepInvert True for inverted step pin, false for non-inverted + /// \param[in] enableInvert True for inverted enable pin, false (default) for non-inverted + void setPinsInverted(bool directionInvert = false, bool stepInvert = false, bool enableInvert = false); + + /// Sets the inversion for 2, 3 and 4 wire stepper pins + /// \param[in] pin1Invert True for inverted pin1, false for non-inverted + /// \param[in] pin2Invert True for inverted pin2, false for non-inverted + /// \param[in] pin3Invert True for inverted pin3, false for non-inverted + /// \param[in] pin4Invert True for inverted pin4, false for non-inverted + /// \param[in] enableInvert True for inverted enable pin, false (default) for non-inverted + void setPinsInverted(bool pin1Invert, bool pin2Invert, bool pin3Invert, bool pin4Invert, bool enableInvert); + + /// Checks to see if the motor is currently running to a target + /// \return true if the speed is not zero or not at the target position + bool isRunning(); + +protected: + + /// \brief Direction indicator + /// Symbolic names for the direction the motor is turning + typedef enum + { + DIRECTION_CCW = 0, ///< Clockwise + DIRECTION_CW = 1 ///< Counter-Clockwise + } Direction; + + /// Forces the library to compute a new instantaneous speed and set that as + /// the current speed. It is called by + /// the library: + /// \li after each step + /// \li after change to maxSpeed through setMaxSpeed() + /// \li after change to acceleration through setAcceleration() + /// \li after change to target position (relative or absolute) through + /// move() or moveTo() + void computeNewSpeed(); + + /// Low level function to set the motor output pins + /// bit 0 of the mask corresponds to _pin[0] + /// bit 1 of the mask corresponds to _pin[1] + /// You can override this to impment, for example serial chip output insted of using the + /// output pins directly + virtual void setOutputPins(uint8_t mask); + + /// Called to execute a step. Only called when a new step is + /// required. Subclasses may override to implement new stepping + /// interfaces. The default calls step1(), step2(), step4() or step8() depending on the + /// number of pins defined for the stepper. + /// \param[in] step The current step phase number (0 to 7) + virtual void step(long step); + + /// Called to execute a step using stepper functions (pins = 0) Only called when a new step is + /// required. Calls _forward() or _backward() to perform the step + /// \param[in] step The current step phase number (0 to 7) + virtual void step0(long step); + + /// Called to execute a step on a stepper driver (ie where pins == 1). Only called when a new step is + /// required. Subclasses may override to implement new stepping + /// interfaces. The default sets or clears the outputs of Step pin1 to step, + /// and sets the output of _pin2 to the desired direction. The Step pin (_pin1) is pulsed for 1 microsecond + /// which is the minimum STEP pulse width for the 3967 driver. + /// \param[in] step The current step phase number (0 to 7) + virtual void step1(long step); + + /// Called to execute a step on a 2 pin motor. Only called when a new step is + /// required. Subclasses may override to implement new stepping + /// interfaces. The default sets or clears the outputs of pin1 and pin2 + /// \param[in] step The current step phase number (0 to 7) + virtual void step2(long step); + + /// Called to execute a step on a 3 pin motor, such as HDD spindle. Only called when a new step is + /// required. Subclasses may override to implement new stepping + /// interfaces. The default sets or clears the outputs of pin1, pin2, + /// pin3 + /// \param[in] step The current step phase number (0 to 7) + virtual void step3(long step); + + /// Called to execute a step on a 4 pin motor. Only called when a new step is + /// required. Subclasses may override to implement new stepping + /// interfaces. The default sets or clears the outputs of pin1, pin2, + /// pin3, pin4. + /// \param[in] step The current step phase number (0 to 7) + virtual void step4(long step); + + /// Called to execute a step on a 3 pin motor, such as HDD spindle. Only called when a new step is + /// required. Subclasses may override to implement new stepping + /// interfaces. The default sets or clears the outputs of pin1, pin2, + /// pin3 + /// \param[in] step The current step phase number (0 to 7) + virtual void step6(long step); + + /// Called to execute a step on a 4 pin half-steper motor. Only called when a new step is + /// required. Subclasses may override to implement new stepping + /// interfaces. The default sets or clears the outputs of pin1, pin2, + /// pin3, pin4. + /// \param[in] step The current step phase number (0 to 7) + virtual void step8(long step); + +private: + /// Number of pins on the stepper motor. Permits 2 or 4. 2 pins is a + /// bipolar, and 4 pins is a unipolar. + uint8_t _interface; // 0, 1, 2, 4, 8, See MotorInterfaceType + + /// Arduino pin number assignments for the 2 or 4 pins required to interface to the + /// stepper motor or driver + uint8_t _pin[4]; + + /// Whether the _pins is inverted or not + uint8_t _pinInverted[4]; + + /// The current absolution position in steps. + long _currentPos; // Steps + + /// The target position in steps. The AccelStepper library will move the + /// motor from the _currentPos to the _targetPos, taking into account the + /// max speed, acceleration and deceleration + long _targetPos; // Steps + + /// The current motos speed in steps per second + /// Positive is clockwise + float _speed; // Steps per second + + /// The maximum permitted speed in steps per second. Must be > 0. + float _maxSpeed; + + /// The acceleration to use to accelerate or decelerate the motor in steps + /// per second per second. Must be > 0 + float _acceleration; + float _sqrt_twoa; // Precomputed sqrt(2*_acceleration) + + /// The current interval between steps in microseconds. + /// 0 means the motor is currently stopped with _speed == 0 + unsigned long _stepInterval; + + /// The last step time in microseconds + unsigned long _lastStepTime; + + /// The minimum allowed pulse width in microseconds + unsigned int _minPulseWidth; + + /// Is the direction pin inverted? + ///bool _dirInverted; /// Moved to _pinInverted[1] + + /// Is the step pin inverted? + ///bool _stepInverted; /// Moved to _pinInverted[0] + + /// Is the enable pin inverted? + bool _enableInverted; + + /// Enable pin for stepper driver, or 0xFF if unused. + uint8_t _enablePin; + + /// The pointer to a forward-step procedure + void (*_forward)(); + + /// The pointer to a backward-step procedure + void (*_backward)(); + + /// The step counter for speed calculations + long _n; + + /// Initial step size in microseconds + float _c0; + + /// Last step size in microseconds + float _cn; + + /// Min step size in microseconds based on maxSpeed + float _cmin; // at max speed + + /// Current direction motor is spinning in + boolean _direction; // 1 == CW + +}; + +/// @example Random.pde +/// Make a single stepper perform random changes in speed, position and acceleration + +/// @example Overshoot.pde +/// Check overshoot handling +/// which sets a new target position and then waits until the stepper has +/// achieved it. This is used for testing the handling of overshoots + +/// @example MultipleSteppers.pde +/// Shows how to multiple simultaneous steppers +/// Runs one stepper forwards and backwards, accelerating and decelerating +/// at the limits. Runs other steppers at the same time + +/// @example ConstantSpeed.pde +/// Shows how to run AccelStepper in the simplest, +/// fixed speed mode with no accelerations + +/// @example Blocking.pde +/// Shows how to use the blocking call runToNewPosition +/// Which sets a new target position and then waits until the stepper has +/// achieved it. + +/// @example AFMotor_MultiStepper.pde +/// Control both Stepper motors at the same time with different speeds +/// and accelerations. + +/// @example AFMotor_ConstantSpeed.pde +/// Shows how to run AccelStepper in the simplest, +/// fixed speed mode with no accelerations + +/// @example ProportionalControl.pde +/// Make a single stepper follow the analog value read from a pot or whatever +/// The stepper will move at a constant speed to each newly set posiiton, +/// depending on the value of the pot. + +/// @example Bounce.pde +/// Make a single stepper bounce from one limit to another, observing +/// accelrations at each end of travel + +/// @example Quickstop.pde +/// Check stop handling. +/// Calls stop() while the stepper is travelling at full speed, causing +/// the stepper to stop as quickly as possible, within the constraints of the +/// current acceleration. + +/// @example MotorShield.pde +/// Shows how to use AccelStepper to control a 3-phase motor, such as a HDD spindle motor +/// using the Adafruit Motor Shield http://www.ladyada.net/make/mshield/index.html. + +/// @example DualMotorShield.pde +/// Shows how to use AccelStepper to control 2 x 2 phase steppers using the +/// Itead Studio Arduino Dual Stepper Motor Driver Shield +/// model IM120417015 + +#endif diff --git a/arduino code/Configuration.h b/arduino code/Configuration.h new file mode 100644 index 0000000..bb8e5e8 --- /dev/null +++ b/arduino code/Configuration.h @@ -0,0 +1,31 @@ +#ifndef CONFIGURATION_H //Falls Check Variable, nicht schon definiert.. +#define CONFIGURATION_H //.. Wird si nun definiert, und alle Konfigurationen Neu geladen. + +#define maestroSerial SERIAL_PORT_HARDWARE_OPEN // Festlegen unserer maestroSerial Variable + +// Stepper Treiber Variabeln +#define X_INTERFACE_TYPE 1 // Festlegen des Interface Typs +#define X_STEP_PIN 3 // Festlegen des Stepper Treiber, Stitte Pins +#define X_DIR_PIN 4 // Festlegen des Stepper Treiber, Dir Pins + +// Stepper Motor Konfiguration +#define X_PARK_SPEED 150 // Geschwindigkeit, kurz vor den Führungsenden +#define X_HOME_SPEED 700 // Geschwindikeit, um zur (Start), Ausgangsposition zurückzukehren. +#define X_MAX_SPEED 1500 // Die Maximale Geschwindikeit, die zulässig ist. +#define X_ACCELERATION 3000 // Acceleration/deceleration in Schritten pro Sekunde, in einer Sekunde +#define X_MAX_POS -4995 // Der maximale Wert, für die Positionierung der X Achse! (Sicherheit falls App falsch konfiguriert.) + +// Servo Motor Konfiguration +#define SERVO_MAX_POS 4120 // Servo Getränke Auslass Position (Sollte ca. Passen, wird noch angepasst!) +#define SERVO_MIN_POS 6000 // Servo Ausgangsposition (Links nach unten zeigend..) +#define SERVO_RAISE_SPEED 30 // Die max. Geschwindigkeit des Servos, von der Max, zur Min(Normal), Position. +#define SERVO_RELEASE_SPEED 0 // Die max. Geschwindigkeit des Servos, von der Min, zur Max, Position. + +// Endstop Schaltung +#define X_ENDSTOP_PIN 5 // Festlegen des Pins, für den Endstop + +// Weiteres +#define TOTAL_ACTIONS 30 // Totale Anzahl von ausführbaren Abfolgen, pro Auftrag +#define DELAY_BETWEEN_INGREDIENTS 600 // Wartezeit, von einer Zutat zur nächsten. + +#endif diff --git a/arduino code/PololuMaestro.cpp b/arduino code/PololuMaestro.cpp new file mode 100644 index 0000000..c556511 --- /dev/null +++ b/arduino code/PololuMaestro.cpp @@ -0,0 +1,223 @@ +// Copyright (C) Pololu Corporation. See LICENSE.txt for details. + +#include "PololuMaestro.h" + +Maestro::Maestro(Stream &stream, + uint8_t resetPin, + uint8_t deviceNumber, + bool CRCEnabled) +{ + _stream = &stream; + _deviceNumber = deviceNumber; + _resetPin = resetPin; + _CRCEnabled = CRCEnabled; +} + +void Maestro::reset() +{ + if (_resetPin != noResetPin) + { + digitalWrite(_resetPin, LOW); + pinMode(_resetPin, OUTPUT); // Drive low. + delay(1); + pinMode(_resetPin, INPUT); // Return to high-impedance input (reset is + // internally pulled up on Maestro). + delay(200); // Wait for Maestro to boot up after reset. + } +} + +void Maestro::setTargetMiniSSC(uint8_t channelNumber, uint8_t target) +{ + _stream->write(miniSscCommand); + _stream->write(channelNumber); + _stream->write(target); +} + +void Maestro::goHome() +{ + writeCommand(goHomeCommand); + writeCRC(); +} + +void Maestro::stopScript() +{ + writeCommand(stopScriptCommand); + writeCRC(); +} + +void Maestro::restartScript(uint8_t subroutineNumber) +{ + writeCommand(restartScriptAtSubroutineCommand); + write7BitData(subroutineNumber); + writeCRC(); +} + +void Maestro::restartScriptWithParameter(uint8_t subroutineNumber, + uint16_t parameter) +{ + writeCommand(restartScriptAtSubroutineWithParameterCommand); + write7BitData(subroutineNumber); + write14BitData(parameter); + writeCRC(); +} + +void Maestro::setTarget(uint8_t channelNumber, uint16_t target) +{ + writeCommand(setTargetCommand); + write7BitData(channelNumber); + write14BitData(target); + writeCRC(); +} + +void Maestro::setSpeed(uint8_t channelNumber, uint16_t speed) +{ + writeCommand(setSpeedCommand); + write7BitData(channelNumber); + write14BitData(speed); + writeCRC(); +} + +void Maestro::setAcceleration(uint8_t channelNumber, uint16_t acceleration) +{ + writeCommand(setAccelerationCommand); + write7BitData(channelNumber); + write14BitData(acceleration); + writeCRC(); +} + +uint16_t Maestro::getPosition(uint8_t channelNumber) +{ + writeCommand(getPositionCommand); + write7BitData(channelNumber); + writeCRC(); + + while (_stream->available() < 2); + uint8_t lowerByte = _stream->read(); + uint8_t upperByte = _stream->read(); + return (upperByte << 8) | (lowerByte & 0xFF); +} + +uint8_t Maestro::getMovingState() +{ + writeCommand(getMovingStateCommand); + writeCRC(); + + while (_stream->available() < 1); + return _stream->read(); +} + +uint16_t Maestro::getErrors() +{ + writeCommand(getErrorsCommand); + writeCRC(); + + while (_stream->available() < 2); + uint8_t lowerByte = _stream->read(); + uint8_t upperByte = _stream->read(); + return (upperByte << 8) | (lowerByte & 0xFF); +} + +uint8_t Maestro::getScriptStatus() +{ + writeCommand(getScriptStatusCommand); + writeCRC(); + + while (_stream->available() < 1); + return _stream->read(); +} + +void Maestro::writeByte(uint8_t dataByte) +{ + _stream->write(dataByte); + + if(_CRCEnabled) + { + _CRCByte ^= dataByte; + for (uint8_t j = 0; j < 8; j++) + { + if (_CRCByte & 1) + { + _CRCByte ^= CRC7Polynomial; + } + _CRCByte >>= 1; + } + } +} + +void Maestro::writeCRC() +{ + if(_CRCEnabled) + { + _stream->write(_CRCByte); + _CRCByte = 0; // Reset CRCByte to initial value. + } +} + +void Maestro::writeCommand(uint8_t commandByte) +{ + if (_deviceNumber != deviceNumberDefault) + { + writeByte(baudRateIndication); + write7BitData(_deviceNumber); + write7BitData(commandByte); + } + else + { + writeByte(commandByte); + } +} + +void Maestro::write7BitData(uint8_t data) +{ + writeByte(data & 0x7F); +} + +void Maestro::write14BitData(uint16_t data) +{ + writeByte(data & 0x7F); + writeByte((data >> 7) & 0x7F); +} + +MicroMaestro::MicroMaestro(Stream &stream, + uint8_t resetPin, + uint8_t deviceNumber, + bool CRCEnabled) : Maestro(stream, + resetPin, + deviceNumber, + CRCEnabled) +{ +} + +MiniMaestro::MiniMaestro(Stream &stream, + uint8_t resetPin, + uint8_t deviceNumber, + bool CRCEnabled) : Maestro(stream, + resetPin, + deviceNumber, + CRCEnabled) +{ +} + +void MiniMaestro::setPWM(uint16_t onTime, uint16_t period) +{ + writeCommand(setPwmCommand); + write14BitData(onTime); + write14BitData(period); + writeCRC(); +} + +void MiniMaestro::setMultiTarget(uint8_t numberOfTargets, + uint8_t firstChannel, + uint16_t *targetList) +{ + writeCommand(setMultipleTargetsCommand); + write7BitData(numberOfTargets); + write7BitData(firstChannel); + + for (int i = 0; i < numberOfTargets; i++) + { + write14BitData(targetList[i]); + } + + writeCRC(); +} diff --git a/arduino code/PololuMaestro.h b/arduino code/PololuMaestro.h new file mode 100644 index 0000000..3ba58c1 --- /dev/null +++ b/arduino code/PololuMaestro.h @@ -0,0 +1,381 @@ +// Copyright (C) Pololu Corporation. See LICENSE.txt for details. + +/*! \file PololuMaestro.h + * + * This is the main header file for the Pololu Maestro Servo Controller library + * for Arduino. + * + * + * For an overview of the library's features, see + * https://github.com/pololu/maestro-arduino. That is the main repository for + * the library. + */ + +#pragma once + +#include +#include + +/*! \brief Main Maestro class that handles common functions between the Micro + * Maestro and Mini Maestro. + * + * The subclasses, MicroMaestro and MiniMaestro inherit all of the functions + * from Maestro. The Maestro class is not meant to be instantiated directly; use + * the MicroMaestro or MiniMaestro subclasses instead. + */ +class Maestro +{ + public: + /** \brief The default device number, used to construct a MicroMaestro or + MiniMaestro object that will use the compact protocol. + */ + static const uint8_t deviceNumberDefault = 255; + + /** \brief The default reset pin is no reset pin, used to construct a + MicroMaestro or MiniMaestro object that will not have a reset pin. + */ + static const uint8_t noResetPin = 255; + + /** \brief Resets the Maestro by toggling the \p resetPin, if a \p resetPin + * was given. + * + * By default this function will do nothing. If the \p resetPin was + * specified while constructing the Maestro object, it will toggle that pin. + * That pin needs to be wired to the Maestro's RST pin for it to reset the + * servo controller. + */ + void reset(); + + /** \brief Sets the \a target of the servo on \a channelNumber using the + * Mini SSC protocol. + * + * @param channelNumber A servo number from 0 to 254. + * + * @param target A target position from 0 to 254. + * + */ + void setTargetMiniSSC(uint8_t channelNumber, uint8_t target); + + /** \brief Sets the \a target of the servo on \a channelNumber. + * + * @param channelNumber A servo number from 0 to 127. + * + * @param target A number from 0 to 16383. + * + * If the channel is configured as a servo, then the target represents the + * pulse width to transmit in units of quarter-microseconds. A \a target + * value of 0 tells the Maestro to stop sending pulses to the servo. + * + * If the channel is configured as a digital output, values less than 6000 + * tell the Maestro to drive the line low, while values of 6000 or greater + * tell the Maestro to drive the line high. + * + * The compact protocol is used by default. If the %deviceNumber was given + * to the constructor, it uses the Pololu protocol. + */ + void setTarget(uint8_t channelNumber, uint16_t target); + + /** \brief Sets the \a speed limit of \a channelNumber. + * + * @param channelNumber A servo number from 0 to 127. + * + * @param speed A number from 0 to 16383. + * + * Limits the speed a servo channel’s output value changes. + * + * See the Serial Interface section in the [Maestro User's + * Guide](http://www.pololu.com/docs/0J40) for more details. + * + * The compact protocol is used by default. If the %deviceNumber was given + * to the constructor, it uses the Pololu protocol. + */ + void setSpeed(uint8_t channelNumber, uint16_t speed); + + /** \brief Sets the \a acceleration limit of \a channelNumber. + * + * @param channelNumber A servo number from 0 to 127. + * + * @param acceleration A number from 0 to 16383. + * + * Limits the acceleration a servo channel’s output value changes. + * + * See the Serial Interface section in the [Maestro User's + * Guide](http://www.pololu.com/docs/0J40) for more details. + * + * The compact protocol is used by default. If the %deviceNumber was given + * to the constructor, it uses the Pololu protocol. + */ + void setAcceleration(uint8_t channelNumber, uint16_t acceleration); + + /** \brief Sends the servos and outputs to home position. + * + * If the "On startup or error" setting for a servo or output channel is set + * to "Ignore", the position will be unchanged. + * + * See the Serial Interface section in the [Maestro User's + * Guide](http://www.pololu.com/docs/0J40) for more details. + * + * The compact protocol is used by default. If the %deviceNumber was given + * to the constructor, it uses the Pololu protocol. + */ + void goHome(); + + /** \brief Stops the script. + * + * Stops the script, if it is currently running. + * + * See the Serial Interface section in the [Maestro User's + * Guide](http://www.pololu.com/docs/0J40) for more details. + * + * The compact protocol is used by default. If the %deviceNumber was given + * to the constructor, it uses the Pololu protocol. + */ + void stopScript(); + + /** \brief Starts loaded script at specified \a subroutineNumber location. + * + * @param subroutineNumber A subroutine number defined in script's compiled + * code. + * + * Starts the loaded script at location specified by the subroutine number. + * Subroutines are numbered in the order they are defined in loaded script. + * Click the "View Compiled Code..." button and look at the subroutine list + * to find the number for a particular subroutine. + * + * See the Serial Interface section in the [Maestro User's + * Guide](http://www.pololu.com/docs/0J40) for more details. + * + * The compact protocol is used by default. If the %deviceNumber was given + * to the constructor, it uses the Pololu protocol. + */ + void restartScript(uint8_t subroutineNumber); + + /** \brief Starts loaded script at specified \a subroutineNumber location + * after loading \a parameter on to the stack. + * + * @param subroutineNumber A subroutine number defined in script's compiled + * code. + * + * @param parameter A number from 0 to 16383. + * + * Similar to the \p restartScript function, except it loads the parameter + * on to the stack before starting the script at the specified subroutine + * number location. + * + * See the Serial Interface section in the [Maestro User's + * Guide](http://www.pololu.com/docs/0J40) for more details. + * + * The compact protocol is used by default. If the %deviceNumber was given + * to the constructor, it uses the Pololu protocol. + */ + void restartScriptWithParameter(uint8_t subroutineNumber, uint16_t parameter); + + /** \brief Gets the position of \a channelNumber. + * + * @param channelNumber A servo number from 0 to 127. + * + * @return two-byte position value + * + * If channel is configured as a servo, then the position value represents + * the current pulse width transmitted on the channel in units of + * quarter-microseconds. + * + * If the channel is configured as a digital output, a position value less + * than 6000 means the Maestro is driving the line low, while a position + * value of 6000 or greater means the Maestro is driving the line high. + * + * If channel is configured as an input, then the position value represents + * the voltage measured. Analog inputs for channels 0-11: their values range + * from 0 to 1023, representing 0 to 5V. Digital inputs for channels 12-23: + * their values are exactly 0 or exactly 1023. + * + * See the Serial Interface section in the [Maestro User's + * Guide](http://www.pololu.com/docs/0J40) for more details. + * + * The compact protocol is used by default. If the %deviceNumber was given + * to the constructor, it uses the Pololu protocol. + */ + uint16_t getPosition(uint8_t channelNumber); + + /** \brief Gets the moving state for all configured servo channels. + * + * @return 1 if at least one servo limited by speed or acceleration is still + * moving, 0 if not. + * + * Determines if the servo outputs have reached their targets or are still + * changing and will return 1 as as long as there is at least one servo that + * is limited by a speed or acceleration setting. + * + * See the Serial Interface section in the [Maestro User's + * Guide](http://www.pololu.com/docs/0J40) for more details. + * + * The compact protocol is used by default. If the %deviceNumber was given + * to the constructor, it uses the Pololu protocol. + */ + uint8_t getMovingState(); + + /** \brief Gets if the script is running or stopped. + * + * @return 1 if script is stopped, 0 if running. + * + * The compact protocol is used by default. If the %deviceNumber was given + * to the constructor, it uses the Pololu protocol. + */ + uint8_t getScriptStatus(); + + /** \brief Gets the error register. + * + * @return Two-byte error code. + * + * Returns the error register in two bytes then all the error bits are + * cleared on the Maestro. See the Errors section of the [Maestro User's + * Guide](http://www.pololu.com/docs/0J40) for more details. + * + * The compact protocol is used by default. If the %deviceNumber was given + * to the constructor, it uses the Pololu protocol. + */ + uint16_t getErrors(); + + /** \cond + * + * This should be considered a private implementation detail of the library. + **/ + protected: + Maestro(Stream &stream, + uint8_t resetPin, + uint8_t deviceNumber, + bool CRCEnabled); + + void writeByte(uint8_t dataByte); + void writeCRC(); + void writeCommand(uint8_t commandByte); + void write7BitData(uint8_t data); + void write14BitData(uint16_t data); + /** \endcond **/ + + private: + static const uint8_t CRC7Polynomial = 0x91; + static const uint8_t baudRateIndication = 0xAA; + + static const uint8_t miniSscCommand = 0xFF; + static const uint8_t setTargetCommand = 0x84; + static const uint8_t setSpeedCommand = 0x87; + static const uint8_t setAccelerationCommand = 0x89; + static const uint8_t getPositionCommand = 0x90; + static const uint8_t getMovingStateCommand = 0x93; + static const uint8_t getErrorsCommand = 0xA1; + static const uint8_t goHomeCommand = 0xA2; + static const uint8_t stopScriptCommand = 0xA4; + static const uint8_t restartScriptAtSubroutineCommand = 0xA7; + static const uint8_t restartScriptAtSubroutineWithParameterCommand = 0xA8; + static const uint8_t getScriptStatusCommand = 0xAE; + + uint8_t _deviceNumber; + uint8_t _resetPin; + bool _CRCEnabled; + uint8_t _CRCByte; + Stream *_stream; +}; + +class MicroMaestro : public Maestro +{ + public: + /** \brief Create a MicroMaestro object. + * + * @param stream A class that descends from Stream, like SoftwareSerial or + * one of the Hardware Serial ports. + * + * @param resetPin The pin used by reset() to reset the Maestro. The default + * value is Maestro::noResetPin, which makes reset() do nothing. + * + * @param deviceNumber The device number configured on the Serial Settings + * tab in the Maestro Control Center. When deviceNumber is anything but + * Maestro::deviceNumberDefault, the Maestro communicates via the Pololu + * protocol. Otherwise, it uses the Compact protocol. + * + * @param CRCEnabled When true, the object computes the CRC value for a + * command packet and sends it at the end. The Maestro also has to have the + * Enable CRC option checked on the Serial Settings tab of the Maestro + * Control Center. + */ + MicroMaestro(Stream &stream, + uint8_t resetPin = noResetPin, + uint8_t deviceNumber = deviceNumberDefault, + bool CRCEnabled = false); +}; + +class MiniMaestro : public Maestro +{ + public: + /** \brief Create a MiniMaestro object. + * + * @param stream A class that descends from Stream, like SoftwareSerial or + * one of the Hardware Serial ports. + * + * @param resetPin The pin used by reset() to reset the Maestro. The default + * value is Maestro::noResetPin, which makes reset() do nothing. + * + * @param deviceNumber The device number configured on the Serial Settings + * tab in the Maestro Control Center. When deviceNumber is anything but + * Maestro::deviceNumberDefault, the Maestro communicates via the Pololu + * protocol. Otherwise, it uses the Compact protocol. + * + * @param CRCEnabled When true, the object computes the CRC value for a + * command packet and sends it at the end. The Maestro also has to have the + * Enable CRC option checked on the Serial Settings tab of the Maestro + * Control Center. + * + * The MiniMaestro object adds serial commands only availabe on the Mini + * Maestro servo controllers: setPWM and setMultiTarget. + */ + MiniMaestro(Stream &stream, + uint8_t resetPin = noResetPin, + uint8_t deviceNumber = deviceNumberDefault, + bool CRCEnabled = false); + + /** \brief Sets the PWM specified by \a onTime and \a period in units of + * 1/48 microseconds. + * + * @param onTime A number from 0 to 16320. + * + * @param period A number from 4 to 16384. + * + * Sets the PWM output to the specified on time and period, in units of 1/48 + * microseconds. + * + * See the Serial Interface section in the [Maestro User's + * Guide](http://www.pololu.com/docs/0J40) for more details. + * + * The compact protocol is used by default. If the %deviceNumber was given + * to the constructor, it uses the Pololu protocol. + */ + void setPWM(uint16_t onTime, uint16_t period); + + /** \brief Sets multiple targets starting with the channel specified by \a + * firstChannel to a list of values listed in \a targetList for a + * contiguous block of channels specified by \a numberOfTargets. + * + * @param numberOfTargets A number from 0 to 24. + * + * @param firstChannel A channel number from 0 to (24 - + * \a numberOfTargets) + * + * @param targetList An array of numbers from 0 to 16383. + * + * The target value representation based on the channel's configuration + * (servo and output) is the same as the Set Target command. + * + * See the Serial Interface section in the [Maestro User's + * Guide](http://www.pololu.com/docs/0J40) for more details. + * + * The compact protocol is used by default. If the %deviceNumber was given + * to the constructor, it uses the Pololu protocol. + */ + void setMultiTarget(uint8_t numberOfTargets, + uint8_t firstChannel, + uint16_t *targetList); + + private: + static const uint8_t setPwmCommand = 0x8A; + static const uint8_t setMultipleTargetsCommand = 0x9F; +}; diff --git a/arduino code/_Getraenkeautomat.ino b/arduino code/_Getraenkeautomat.ino new file mode 100644 index 0000000..7ba6200 --- /dev/null +++ b/arduino code/_Getraenkeautomat.ino @@ -0,0 +1,181 @@ +#include "AccelStepper.h" //Including der Servo Library +#include "PololuMaestro.h" //Including der PolouMaestro Library, für den Motor Driver +#include "Configuration.h" //Including unseres Konfigurationsfiles! + +String serialBuffer = ""; //Leeren der SerialBuffer Variable! +String actions[TOTAL_ACTIONS]; //Holen des ersten wertes, aus dem Konfigurationsfile, (Max Aktionen.) + +int counter = 0; //Counter Variable zum Start auf 0 Setzen, (Zählt Schritte) +int lastIndex = 0; //Index Variable auch auf 0 -> Index für den Standort + +AccelStepper stepper(X_INTERFACE_TYPE, X_STEP_PIN, X_DIR_PIN); // Definition, der Variabeln aus dem Konfigurationsfile für dem Steppermotor! Pins für (Schritte, Interface, und Dir) +MicroMaestro maestro(maestroSerial); // Definiert einen neuen Servo Controller, anhand der Eingebundenen Librarys und des Konfigurationsfiles! + +void setup() { + Serial.begin(9600); // Festlegen des Serial port für das Debugging + maestroSerial.begin(9600); // Festlegen des Servo controller Ports, gleich wie Debugging! + Serial2.begin(9600); // Festlegen des Bluetooth module Port. -> Auch gleich um Meldungen zu übergeben! + stepper.setMaxSpeed(X_MAX_SPEED); // Setzt die max. Geschwindigkeit für den Stepper, aus unserem Konfigurationsfile. + pinMode(X_ENDSTOP_PIN, INPUT_PULLUP); // Initialisiert den Endstop Pin, als Pullup-Schalter -> also Kontaktschalter! + homeXAxis(); // Bei jedem Start, soll der Getränkeautomat, an seine Start; Ausgangsposition zurückfahren! +} + +// Die Funktion um die Startposition automatisch zu finden: +void homeXAxis() { + int endStopState = digitalRead(X_ENDSTOP_PIN); + + while (endStopState == HIGH) { + stepper.moveTo(100); + stepper.setSpeed(X_HOME_SPEED); + stepper.runSpeed(); + endStopState = digitalRead(X_ENDSTOP_PIN); + } + + stepper.moveTo(stepper.currentPosition() - 50); + while (stepper.distanceToGo() != 0) { + stepper.setSpeed(X_PARK_SPEED * -1); + stepper.runSpeed(); + } + + endStopState = digitalRead(X_ENDSTOP_PIN); + + while (endStopState == HIGH) { + stepper.moveTo(100); + stepper.setSpeed(X_PARK_SPEED); + stepper.runSpeed(); + endStopState = digitalRead(X_ENDSTOP_PIN); + } + stepper.setCurrentPosition(0); +} + +void loop() { + while(Serial2.available() > 0) { + char ch = Serial2.read(); + serialBuffer += ch; + if (ch == '\n') { + for(int i=0; i= X_MAX_POS) { //Wenn die Position zwischen 0 und dem festgelegten max Wert liegt, wird fortgefahren. + stepper.setAcceleration(X_ACCELERATION); //Holen des X_Acceleration Wertes aus dem Konfigurationsfile + stepper.moveTo(pos); //Legt den wert (Wo er hin muss) für den Stepper Motor fest! + if(pos < stepper.currentPosition()) { //Wenn die angegebene Position kleiner ist als die Aktuelle.. + stepper.setSpeed(-100); //..wird die Geschwindigkeit gedrosselt! + } else { + stepper.setSpeed(100); //..sonst nicht. + } + while(stepper.distanceToGo() != 0) { // Bis die Distanz für das Ziel nicht 0 also der Stepper Motor am Ausgangspunkt angekommen ist, wird stepper.run() weiter ausgeführt! + stepper.run(); //Fährt den Motor zurück! + } + } else { + Serial.println("Die Position, sollte zwischen -4995 und 0 sein!"); // Ein Fehler ist aufgetreten, er kann nicht automatisch die Startposition finden. (Sollte nicht mehr passieren, ist jedoch trozdem sicherer so!) ->> Lösung: Strom ausschalten & manuell zurückfahren + } +} + +// Hauptfunktion für das herauslassen der Getränke: +void pour(String input) { //Methode pour, wird durch Ionic vorgegeben und umschreibt eine Kommunikationsart. (Gleichername verwendet, einfachheitshalber) + int count = 0; // Setzen der Count Variable, zur Zählung der Zutaten + int times = 0; // Setzen der Times Variabel, wie viele Male, eine Zutat gewählt wird! + int holdDuration = 0; // Setzen der Öffnungsdauer, wie lange auf eine Flasche gedrückt wird. + int waitDuration = 0; // Setzen der Wartezeit, bis die nächste Zutat gewählt wird. + + for(int z=0; z 0 && waitDuration > 0) { + for(int i=0; i count) { + delay(waitDuration); + } else { + delay(DELAY_BETWEEN_INGREDIENTS); + } + count++; + } + } else { + Serial.println("Die Öffnungsdauer und Wartezeit, kann nicht kleiner, gleich 0 sein!"); + } +} + +int getParameterValue(String input, int z) { + for(int y=z+1; y + + Cocktail Master + Unser Getränkeautomat lässt sich anhand dieser App via Bluetooth steuern! + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/client app/hooks/README.md b/client app/hooks/README.md new file mode 100644 index 0000000..62e58b4 --- /dev/null +++ b/client app/hooks/README.md @@ -0,0 +1,196 @@ + +# Cordova Hooks + +Cordova Hooks represent special scripts which could be added by application and plugin developers or even by your own build system to customize cordova commands. Hook scripts could be defined by adding them to the special predefined folder (`/hooks`) or via configuration files (`config.xml` and `plugin.xml`) and run serially in the following order: +* Application hooks from `/hooks`; +* Application hooks from `config.xml`; +* Plugin hooks from `plugins/.../plugin.xml`. + +__Remember__: Make your scripts executable. + +__Note__: `.cordova/hooks` directory is also supported for backward compatibility, but we don't recommend using it as it is deprecated. + +## Supported hook types +The following hook types are supported: + + after_build/ + after_compile/ + after_docs/ + after_emulate/ + after_platform_add/ + after_platform_rm/ + after_platform_ls/ + after_plugin_add/ + after_plugin_ls/ + after_plugin_rm/ + after_plugin_search/ + after_plugin_install/ <-- Plugin hooks defined in plugin.xml are executed exclusively for a plugin being installed + after_prepare/ + after_run/ + after_serve/ + before_build/ + before_compile/ + before_docs/ + before_emulate/ + before_platform_add/ + before_platform_rm/ + before_platform_ls/ + before_plugin_add/ + before_plugin_ls/ + before_plugin_rm/ + before_plugin_search/ + before_plugin_install/ <-- Plugin hooks defined in plugin.xml are executed exclusively for a plugin being installed + before_plugin_uninstall/ <-- Plugin hooks defined in plugin.xml are executed exclusively for a plugin being uninstalled + before_prepare/ + before_run/ + before_serve/ + pre_package/ <-- Windows 8 and Windows Phone only. + +## Ways to define hooks +### Via '/hooks' directory +To execute custom action when corresponding hook type is fired, use hook type as a name for a subfolder inside 'hooks' directory and place you script file here, for example: + + # script file will be automatically executed after each build + hooks/after_build/after_build_custom_action.js + + +### Config.xml + +Hooks can be defined in project's `config.xml` using `` elements, for example: + + + + + + + + + + ... + + + + + + + ... + + +### Plugin hooks (plugin.xml) + +As a plugin developer you can define hook scripts using `` elements in a `plugin.xml` like that: + + + + + + + + ... + + +`before_plugin_install`, `after_plugin_install`, `before_plugin_uninstall` plugin hooks will be fired exclusively for the plugin being installed/uninstalled. + +## Script Interface + +### Javascript + +If you are writing hooks in Javascript you should use the following module definition: +```javascript +module.exports = function(context) { + ... +} +``` + +You can make your scipts async using Q: +```javascript +module.exports = function(context) { + var Q = context.requireCordovaModule('q'); + var deferral = new Q.defer(); + + setTimeout(function(){ + console.log('hook.js>> end'); + deferral.resolve(); + }, 1000); + + return deferral.promise; +} +``` + +`context` object contains hook type, executed script full path, hook options, command-line arguments passed to Cordova and top-level "cordova" object: +```json +{ + "hook": "before_plugin_install", + "scriptLocation": "c:\\script\\full\\path\\appBeforePluginInstall.js", + "cmdLine": "The\\exact\\command\\cordova\\run\\with arguments", + "opts": { + "projectRoot":"C:\\path\\to\\the\\project", + "cordova": { + "platforms": ["wp8"], + "plugins": ["com.plugin.withhooks"], + "version": "0.21.7-dev" + }, + "plugin": { + "id": "com.plugin.withhooks", + "pluginInfo": { + ... + }, + "platform": "wp8", + "dir": "C:\\path\\to\\the\\project\\plugins\\com.plugin.withhooks" + } + }, + "cordova": {...} +} + +``` +`context.opts.plugin` object will only be passed to plugin hooks scripts. + +You can also require additional Cordova modules in your script using `context.requireCordovaModule` in the following way: +```javascript +var Q = context.requireCordovaModule('q'); +``` + +__Note__: new module loader script interface is used for the `.js` files defined via `config.xml` or `plugin.xml` only. +For compatibility reasons hook files specified via `/hooks` folders are run via Node child_process spawn, see 'Non-javascript' section below. + +### Non-javascript + +Non-javascript scripts are run via Node child_process spawn from the project's root directory and have the root directory passes as the first argument. All other options are passed to the script using environment variables: + +* CORDOVA_VERSION - The version of the Cordova-CLI. +* CORDOVA_PLATFORMS - Comma separated list of platforms that the command applies to (e.g.: android, ios). +* CORDOVA_PLUGINS - Comma separated list of plugin IDs that the command applies to (e.g.: org.apache.cordova.file, org.apache.cordova.file-transfer) +* CORDOVA_HOOK - Path to the hook that is being executed. +* CORDOVA_CMDLINE - The exact command-line arguments passed to cordova (e.g.: cordova run ios --emulate) + +If a script returns a non-zero exit code, then the parent cordova command will be aborted. + +## Writing hooks + +We highly recommend writing your hooks using Node.js so that they are +cross-platform. Some good examples are shown here: + +[http://devgirl.org/2013/11/12/three-hooks-your-cordovaphonegap-project-needs/](http://devgirl.org/2013/11/12/three-hooks-your-cordovaphonegap-project-needs/) + +Also, note that even if you are working on Windows, and in case your hook scripts aren't bat files (which is recommended, if you want your scripts to work in non-Windows operating systems) Cordova CLI will expect a shebang line as the first line for it to know the interpreter it needs to use to launch the script. The shebang line should match the following example: + + #!/usr/bin/env [name_of_interpreter_executable] diff --git a/client app/ionic.config.json b/client app/ionic.config.json new file mode 100644 index 0000000..fa45b1f --- /dev/null +++ b/client app/ionic.config.json @@ -0,0 +1,5 @@ +{ + "name": "Getraenkeautomat", + "app_id": "abcc1a5f", + "type": "ionic-angular" +} diff --git a/client app/package-lock.json b/client app/package-lock.json new file mode 100644 index 0000000..deb9354 --- /dev/null +++ b/client app/package-lock.json @@ -0,0 +1,5475 @@ +{ + "name": "Getraenkeautomat", + "lockfileVersion": 1, + "dependencies": { + "@angular/common": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@angular/common/-/common-2.2.1.tgz", + "integrity": "sha1-rXmWqGW3sR/DFTY4J/JBSkjGWJw=" + }, + "@angular/compiler": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-2.2.1.tgz", + "integrity": "sha1-Fuf69YjPkSGg9sFtC64oMPTK/cE=" + }, + "@angular/compiler-cli": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-2.2.1.tgz", + "integrity": "sha1-FmRpuIHWOUbMPkXEeofSts2QI4Y=" + }, + "@angular/core": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@angular/core/-/core-2.2.1.tgz", + "integrity": "sha1-hv3DSjcKT8/oTtneSzxDVIYSkZw=" + }, + "@angular/forms": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-2.2.1.tgz", + "integrity": "sha1-DnFUrMUSfFg7S1LFnqxF1nLCnaQ=" + }, + "@angular/http": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@angular/http/-/http-2.2.1.tgz", + "integrity": "sha1-FiaISmxfDMYCzp2B50IPzALbM1M=" + }, + "@angular/platform-browser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-2.2.1.tgz", + "integrity": "sha1-1Rs2JgCJ8wVOdF760FmTUj1aUpM=" + }, + "@angular/platform-browser-dynamic": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-2.2.1.tgz", + "integrity": "sha1-Vh0ymC/uS2i0dLpHTH88TZS/62w=" + }, + "@angular/platform-server": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@angular/platform-server/-/platform-server-2.2.1.tgz", + "integrity": "sha1-/aesxxE7/FjsnXKgovzGpuXFIms=" + }, + "@angular/tsc-wrapped": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@angular/tsc-wrapped/-/tsc-wrapped-0.3.0.tgz", + "integrity": "sha1-mM3rXDjRRbGHwK0Dl6jZiyF/M/I=" + }, + "@ionic/app-scripts": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/@ionic/app-scripts/-/app-scripts-1.3.7.tgz", + "integrity": "sha1-T2O+sOp19jQCqE4oWn6F3/ui6zY=", + "dev": true, + "dependencies": { + "acorn": { + "version": "4.0.13", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz", + "integrity": "sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c=", + "dev": true + }, + "async": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/async/-/async-2.4.1.tgz", + "integrity": "sha1-YqVrJ5yYoR0JhwlqAcw+6463u9c=", + "dev": true + }, + "autoprefixer": { + "version": "6.7.2", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-6.7.2.tgz", + "integrity": "sha1-Fyqwe5mK6blXUwkopZpAvlSkUCM=", + "dev": true + }, + "browserslist": { + "version": "1.7.7", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz", + "integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=", + "dev": true + }, + "camelcase": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", + "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=", + "dev": true + }, + "clean-css": { + "version": "3.4.24", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-3.4.24.tgz", + "integrity": "sha1-ifWl6do3rgI5T+BJpBOIq75yw7U=", + "dev": true, + "dependencies": { + "source-map": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", + "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", + "dev": true + } + } + }, + "cliui": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", + "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=", + "dev": true + }, + "content-disposition": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", + "integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=", + "dev": true + }, + "cross-spawn": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.0.1.tgz", + "integrity": "sha1-o7uzAtsil8vqPATt82lB9GE6o5k=", + "dev": true + }, + "estree-walker": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.3.1.tgz", + "integrity": "sha1-5rGlHPcpJSTnI3wxLl/mZgwc4ao=", + "dev": true + }, + "express": { + "version": "4.14.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.14.1.tgz", + "integrity": "sha1-ZGwjf3ZvFIwhIK/wc4F7nk1+DTM=", + "dev": true + }, + "finalhandler": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-0.5.1.tgz", + "integrity": "sha1-LEANjUUwk1vCMlScX6OF7Afeb80=", + "dev": true + }, + "fs-extra": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-2.0.0.tgz", + "integrity": "sha1-M3NSve1KC3FPPrhN6M6nZenTdgA=", + "dev": true + }, + "magic-string": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.19.1.tgz", + "integrity": "sha1-FNdoATyvLsj96hakmvgvw3fnUgE=", + "dev": true + }, + "ms": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz", + "integrity": "sha1-riXPJRKziFodldfwN4aNhDESR2U=", + "dev": true + }, + "node-sass": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-4.5.0.tgz", + "integrity": "sha1-Uy43utDOWHNIyDFTXbyY6kKJUIs=", + "dev": true, + "dependencies": { + "cross-spawn": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-3.0.1.tgz", + "integrity": "sha1-ElYDfsufDF9549bvE14wdwGEuYI=", + "dev": true + } + } + }, + "postcss": { + "version": "5.2.11", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.11.tgz", + "integrity": "sha1-/ym81tLvuYv+CKAiBV7Fmbvnt2E=", + "dev": true + }, + "rollup": { + "version": "0.41.6", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-0.41.6.tgz", + "integrity": "sha1-4NBUl4d6OYwQTYFtJzOnGKepTio=", + "dev": true + }, + "rollup-plugin-commonjs": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/rollup-plugin-commonjs/-/rollup-plugin-commonjs-8.0.2.tgz", + "integrity": "sha1-mLFYm/4ypsD2d5C2DAtJmXKv7Yk=", + "dev": true + }, + "rollup-plugin-json": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/rollup-plugin-json/-/rollup-plugin-json-2.1.1.tgz", + "integrity": "sha1-kzOQ3/PJ4+ZUFX1hMExeFn/FhiM=", + "dev": true, + "dependencies": { + "estree-walker": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.2.1.tgz", + "integrity": "sha1-va/oCVOD2EFNXcLs9MkXO225QS4=", + "dev": true + }, + "rollup-pluginutils": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-1.5.2.tgz", + "integrity": "sha1-HhVud4+UtyVb+hs9AXi+j1xVJAg=", + "dev": true + } + } + }, + "rollup-plugin-node-builtins": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-node-builtins/-/rollup-plugin-node-builtins-2.1.0.tgz", + "integrity": "sha1-rZfLaTsLsfjkvqcarzK13P9cbKA=", + "dev": true + }, + "rollup-plugin-node-globals": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-node-globals/-/rollup-plugin-node-globals-1.1.0.tgz", + "integrity": "sha1-fv2NYR0TJzeCnoBOn1H1CWKvRR8=", + "dev": true, + "dependencies": { + "estree-walker": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.2.1.tgz", + "integrity": "sha1-va/oCVOD2EFNXcLs9MkXO225QS4=", + "dev": true + }, + "magic-string": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.16.0.tgz", + "integrity": "sha1-lw67DacZMwEoX7GqZQ85vdgetFo=", + "dev": true + }, + "rollup-pluginutils": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-1.5.2.tgz", + "integrity": "sha1-HhVud4+UtyVb+hs9AXi+j1xVJAg=", + "dev": true + } + } + }, + "rollup-plugin-node-resolve": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-3.0.0.tgz", + "integrity": "sha1-i4l8TDAw1QASd7BRSyXSygloPuA=", + "dev": true + }, + "rollup-pluginutils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.0.1.tgz", + "integrity": "sha1-fslbNXP2VDpGpkYb2afFRFJdD8A=", + "dev": true + }, + "send": { + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/send/-/send-0.14.2.tgz", + "integrity": "sha1-ObBDiz9RC+Xcb2Z6EfcWiTaM3u8=", + "dev": true + }, + "source-list-map": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-0.1.8.tgz", + "integrity": "sha1-xVCyq1Qn9rPyH1r+rYjE9Vh7IQY=", + "dev": true + }, + "source-map": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=", + "dev": true + }, + "source-map-support": { + "version": "0.4.15", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.15.tgz", + "integrity": "sha1-AyAt9lwG0r2MfsI2KhkwVv7407E=", + "dev": true + }, + "uglify-js": { + "version": "2.8.22", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.22.tgz", + "integrity": "sha1-1Uk0d4qNoUkD+imjJvskwKtRoaA=", + "dev": true + }, + "webpack": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-2.2.1.tgz", + "integrity": "sha1-e7HXKuIIfdGkr1Jq/sFe7RfdpHU=", + "dev": true, + "dependencies": { + "camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", + "dev": true + }, + "cliui": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", + "dev": true + }, + "yargs": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-6.6.0.tgz", + "integrity": "sha1-eC7CHvQDNF+DCoCMo9UTr1YGUgg=", + "dev": true + } + } + }, + "webpack-sources": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-0.1.5.tgz", + "integrity": "sha1-qh86vw8NdNtxEcQOUAuE+WZkB1A=", + "dev": true + }, + "wordwrap": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", + "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=", + "dev": true + }, + "yargs": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", + "integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=", + "dev": true + }, + "yargs-parser": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-4.2.1.tgz", + "integrity": "sha1-KczqwNxPA8bIe0qfIX3RjJ90hxw=", + "dev": true, + "dependencies": { + "camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", + "dev": true + } + } + } + } + }, + "@ionic/cli-plugin-cordova": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@ionic/cli-plugin-cordova/-/cli-plugin-cordova-1.3.0.tgz", + "integrity": "sha512-GF43t7+SpJwG/Lt0YeVkBpNE4IK5Ys2pES55F7ZWbs9npqKw2gk+bTZLCDYm02n0b4GEQnnWfArbxZ7yuM+/pA==", + "dev": true + }, + "@ionic/cli-plugin-ionic-angular": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@ionic/cli-plugin-ionic-angular/-/cli-plugin-ionic-angular-1.3.0.tgz", + "integrity": "sha512-q2ah24qizodkEVdWjs8VsfZOl89mg2lyPELCt5psNKBQW1/YjQtc00CvFEZsUojiwc/eyQG44YHw5PPKFk9SAg==", + "dev": true + }, + "@ionic/cli-utils": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@ionic/cli-utils/-/cli-utils-1.3.0.tgz", + "integrity": "sha512-0bSC1i38HwnoBNw/sIpKPjXQ1Zl/X64q7qgxFDAFWNd9B5alGIHKxx3T5qRlMbqWWsY37gS5wTFfhXt3cyBipQ==", + "dev": true, + "dependencies": { + "cross-spawn": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-4.0.2.tgz", + "integrity": "sha1-e5JHYhwjrf3ThWAEqCPL45dCTUE=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "string-width": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.0.0.tgz", + "integrity": "sha1-Y1xUNsxypuDDh87KJ41OLuxSaH4=", + "dev": true + } + } + }, + "@ionic/storage": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/@ionic/storage/-/storage-1.1.7.tgz", + "integrity": "sha1-Mys52/+7JfnTUF4hXN4Xq26jrWI=" + }, + "@types/localforage": { + "version": "0.0.30", + "resolved": "https://registry.npmjs.org/@types/localforage/-/localforage-0.0.30.tgz", + "integrity": "sha1-PWCmv23aOOP4pGlhFZg3nx9klQk=" + }, + "abbrev": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.0.tgz", + "integrity": "sha1-0FVMIlZjbi9W58LlrRg/hZQo2B8=", + "dev": true + }, + "abstract-leveldown": { + "version": "0.12.4", + "resolved": "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-0.12.4.tgz", + "integrity": "sha1-KeGOYy5g5OIh1YECR4UqY9ey5BA=", + "dev": true, + "dependencies": { + "xtend": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-3.0.0.tgz", + "integrity": "sha1-XM50B7r2Qsunvs2laBEcST9ZZlo=", + "dev": true + } + } + }, + "accepts": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.3.tgz", + "integrity": "sha1-w8p0NJOGSMPg2cHjKN1otiLChMo=", + "dev": true + }, + "acorn": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-1.2.2.tgz", + "integrity": "sha1-yM4n3grMdtiW0rH6099YjZ6C8BQ=" + }, + "acorn-dynamic-import": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz", + "integrity": "sha1-x1K9IQvvZ5UBtsbLf8hPj0cVjMQ=", + "dev": true, + "dependencies": { + "acorn": { + "version": "4.0.13", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz", + "integrity": "sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c=", + "dev": true + } + } + }, + "ajv": { + "version": "4.11.8", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz", + "integrity": "sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY=", + "dev": true + }, + "ajv-keywords": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-1.5.1.tgz", + "integrity": "sha1-MU3QpLM2j609/NxU7eYXG4htrzw=", + "dev": true + }, + "align-text": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", + "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", + "dev": true + }, + "amdefine": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", + "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=" + }, + "ansi-escapes": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz", + "integrity": "sha1-06ioOzGapneTZisT52HHkRQiMG4=", + "dev": true + }, + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true + }, + "anymatch": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.0.tgz", + "integrity": "sha1-o+Uvo5FoyCX/V7AkgSbOWo/5VQc=", + "dev": true + }, + "aproba": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.1.1.tgz", + "integrity": "sha1-ldNgDwdxCqDpKYxyatXs8urLq6s=", + "dev": true + }, + "archiver": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/archiver/-/archiver-1.3.0.tgz", + "integrity": "sha1-TyGU1tj5nfP1MeaIHxTxXVX6ryI=", + "dev": true, + "dependencies": { + "async": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/async/-/async-2.4.1.tgz", + "integrity": "sha1-YqVrJ5yYoR0JhwlqAcw+6463u9c=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "readable-stream": { + "version": "2.2.10", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.10.tgz", + "integrity": "sha512-HQEnnoV404e0EtwB9yNiuk2tJ+egeVC8Y9QBAxzDg8DBJt4BzRp+yQuIb/t3FIWkSTmIi+sgx7yVv/ZM0GNoqw==", + "dev": true + }, + "string_decoder": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.1.tgz", + "integrity": "sha1-YuIA8DmVWmgQ2N8KM//A8BNmLZg=", + "dev": true + } + } + }, + "archiver-utils": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-1.3.0.tgz", + "integrity": "sha1-5QtMCccL89aA4y/xt5lOn52JUXQ=", + "dev": true, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "readable-stream": { + "version": "2.2.10", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.10.tgz", + "integrity": "sha512-HQEnnoV404e0EtwB9yNiuk2tJ+egeVC8Y9QBAxzDg8DBJt4BzRp+yQuIb/t3FIWkSTmIi+sgx7yVv/ZM0GNoqw==", + "dev": true + }, + "string_decoder": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.1.tgz", + "integrity": "sha1-YuIA8DmVWmgQ2N8KM//A8BNmLZg=", + "dev": true + } + } + }, + "are-we-there-yet": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz", + "integrity": "sha1-u13KOCu5TwXhUZQ3PRb9O6HKEQ0=", + "dev": true, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "readable-stream": { + "version": "2.2.10", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.10.tgz", + "integrity": "sha512-HQEnnoV404e0EtwB9yNiuk2tJ+egeVC8Y9QBAxzDg8DBJt4BzRp+yQuIb/t3FIWkSTmIi+sgx7yVv/ZM0GNoqw==", + "dev": true + }, + "string_decoder": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.1.tgz", + "integrity": "sha1-YuIA8DmVWmgQ2N8KM//A8BNmLZg=", + "dev": true + } + } + }, + "arr-diff": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", + "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", + "dev": true + }, + "arr-flatten": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.0.3.tgz", + "integrity": "sha1-onTthawIhJtr14R8RYB0XcUa37E=", + "dev": true + }, + "array-find-index": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", + "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=", + "dev": true + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", + "dev": true + }, + "array-unique": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", + "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=", + "dev": true + }, + "arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", + "dev": true + }, + "asn1": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz", + "integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=", + "dev": true + }, + "asn1.js": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.9.1.tgz", + "integrity": "sha1-SLokC0WpKA6UdImQull9IWYX/UA=", + "dev": true + }, + "assert": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz", + "integrity": "sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE=", + "dev": true + }, + "assert-plus": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz", + "integrity": "sha1-104bh+ev/A24qttwIfP+SBAasjQ=", + "dev": true + }, + "ast-types": { + "version": "0.8.15", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.8.15.tgz", + "integrity": "sha1-ju8IJ/BN/w7IhXupJavj/qYZTlI=" + }, + "async-each": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz", + "integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0=", + "dev": true + }, + "async-foreach": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz", + "integrity": "sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI=", + "dev": true + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", + "dev": true + }, + "aws-sign2": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz", + "integrity": "sha1-FDQt0428yU0OW4fXY81jYSwOeU8=", + "dev": true + }, + "aws4": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz", + "integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4=", + "dev": true + }, + "babel-cli": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-cli/-/babel-cli-6.24.1.tgz", + "integrity": "sha1-IHzXBbumFImy6kG1MSNBz2rKIoM=", + "dev": true, + "dependencies": { + "source-map": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=", + "dev": true + } + } + }, + "babel-code-frame": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.22.0.tgz", + "integrity": "sha1-AnYgvuVnqIwyVhV05/0IAdMxGOQ=", + "dev": true, + "dependencies": { + "esutils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", + "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", + "dev": true + } + } + }, + "babel-core": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.24.1.tgz", + "integrity": "sha1-jEKFZNzh4fQfszfsNPTDsCK1rYM=", + "dev": true, + "dependencies": { + "source-map": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=", + "dev": true + } + } + }, + "babel-generator": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.24.1.tgz", + "integrity": "sha1-5xX0hsWN7SVknYiJRNUqoHxdlJc=", + "dev": true, + "dependencies": { + "source-map": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=", + "dev": true + } + } + }, + "babel-helper-evaluate-path": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/babel-helper-evaluate-path/-/babel-helper-evaluate-path-0.0.3.tgz", + "integrity": "sha1-HRA6ydSlnl1DGEIhLxUXhfesVHs=", + "dev": true + }, + "babel-helper-flip-expressions": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/babel-helper-flip-expressions/-/babel-helper-flip-expressions-0.0.2.tgz", + "integrity": "sha1-e6ss9hFivJJwPpspjvUSvPd9Z4c=", + "dev": true + }, + "babel-helper-is-nodes-equiv": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/babel-helper-is-nodes-equiv/-/babel-helper-is-nodes-equiv-0.0.1.tgz", + "integrity": "sha1-NOmzALFHnd2Y7HfqC76TQt/jloQ=", + "dev": true + }, + "babel-helper-is-void-0": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/babel-helper-is-void-0/-/babel-helper-is-void-0-0.0.1.tgz", + "integrity": "sha1-7XRVO4g+aCJq5F+YmpmwLBkPEFo=", + "dev": true + }, + "babel-helper-mark-eval-scopes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/babel-helper-mark-eval-scopes/-/babel-helper-mark-eval-scopes-0.1.1.tgz", + "integrity": "sha1-RVQ0Xt+fJUlCe9IJjlMCU/ivKZI=", + "dev": true + }, + "babel-helper-remove-or-void": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/babel-helper-remove-or-void/-/babel-helper-remove-or-void-0.1.1.tgz", + "integrity": "sha1-nX4YVtxvr8tBsoOkFnMNwYRPZtc=", + "dev": true + }, + "babel-helper-to-multiple-sequence-expressions": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/babel-helper-to-multiple-sequence-expressions/-/babel-helper-to-multiple-sequence-expressions-0.0.3.tgz", + "integrity": "sha1-x4mg+szSZpxRI0vizqej5aBXPCU=", + "dev": true + }, + "babel-helpers": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz", + "integrity": "sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=", + "dev": true + }, + "babel-messages": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz", + "integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=", + "dev": true + }, + "babel-plugin-minify-constant-folding": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/babel-plugin-minify-constant-folding/-/babel-plugin-minify-constant-folding-0.0.3.tgz", + "integrity": "sha1-pRHoOVYkiYEZh6elA8Q8MSxAE4o=", + "dev": true + }, + "babel-plugin-minify-dead-code-elimination": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/babel-plugin-minify-dead-code-elimination/-/babel-plugin-minify-dead-code-elimination-0.1.6.tgz", + "integrity": "sha1-xUcTRvsKEEaGP9dlx4TLqX17IuM=", + "dev": true + }, + "babel-plugin-minify-flip-comparisons": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/babel-plugin-minify-flip-comparisons/-/babel-plugin-minify-flip-comparisons-0.0.2.tgz", + "integrity": "sha1-fQlTqlh27eYRiWa9qe3sxjvzRqs=", + "dev": true + }, + "babel-plugin-minify-guarded-expressions": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/babel-plugin-minify-guarded-expressions/-/babel-plugin-minify-guarded-expressions-0.0.4.tgz", + "integrity": "sha1-lXEEp2Dmp//ZZwBaehFiG7Qv0Rw=", + "dev": true + }, + "babel-plugin-minify-infinity": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/babel-plugin-minify-infinity/-/babel-plugin-minify-infinity-0.0.3.tgz", + "integrity": "sha1-TMmbYdErQ0zoCtZ1EDM1xYnLqaE=", + "dev": true + }, + "babel-plugin-minify-mangle-names": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/babel-plugin-minify-mangle-names/-/babel-plugin-minify-mangle-names-0.0.6.tgz", + "integrity": "sha1-cxHoIpLVrdk8qAxOz73p6KlzCkM=", + "dev": true + }, + "babel-plugin-minify-numeric-literals": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/babel-plugin-minify-numeric-literals/-/babel-plugin-minify-numeric-literals-0.0.1.tgz", + "integrity": "sha1-lZfmwxFU19rzdE0L1BfBRLJ1vVM=", + "dev": true + }, + "babel-plugin-minify-replace": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/babel-plugin-minify-replace/-/babel-plugin-minify-replace-0.0.1.tgz", + "integrity": "sha1-XVrqfLmJkkUkjR7pznov5Vao+sw=", + "dev": true + }, + "babel-plugin-minify-simplify": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/babel-plugin-minify-simplify/-/babel-plugin-minify-simplify-0.0.6.tgz", + "integrity": "sha1-HVCJmynDxFA+rvuYNlzF96hK7f4=", + "dev": true + }, + "babel-plugin-minify-type-constructors": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/babel-plugin-minify-type-constructors/-/babel-plugin-minify-type-constructors-0.0.3.tgz", + "integrity": "sha1-q1nBrYNba26OkyuHXU303Dk9nSY=", + "dev": true + }, + "babel-plugin-transform-inline-consecutive-adds": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-inline-consecutive-adds/-/babel-plugin-transform-inline-consecutive-adds-0.0.2.tgz", + "integrity": "sha1-pY/Oz8CcCPv5NzpaPnB0bAPQH8E=", + "dev": true + }, + "babel-plugin-transform-member-expression-literals": { + "version": "6.8.3", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-member-expression-literals/-/babel-plugin-transform-member-expression-literals-6.8.3.tgz", + "integrity": "sha1-Tu+n+h06htBawiC8P9+W1e0YNdY=", + "dev": true + }, + "babel-plugin-transform-merge-sibling-variables": { + "version": "6.8.4", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-merge-sibling-variables/-/babel-plugin-transform-merge-sibling-variables-6.8.4.tgz", + "integrity": "sha1-gTpDPy2MaYnuOpxeDLRtN1LTZ6k=", + "dev": true + }, + "babel-plugin-transform-minify-booleans": { + "version": "6.8.2", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-minify-booleans/-/babel-plugin-transform-minify-booleans-6.8.2.tgz", + "integrity": "sha1-hFFXn3BucCweGrJ1beXI6jac8Hw=", + "dev": true + }, + "babel-plugin-transform-property-literals": { + "version": "6.8.3", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-property-literals/-/babel-plugin-transform-property-literals-6.8.3.tgz", + "integrity": "sha1-Dc0uzwSGxUwj+EgX+RHEqw6NS5k=", + "dev": true + }, + "babel-plugin-transform-regexp-constructors": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-regexp-constructors/-/babel-plugin-transform-regexp-constructors-0.0.5.tgz", + "integrity": "sha1-dNleDFZ+b8HZxpmghIlNQN6OWB0=", + "dev": true + }, + "babel-plugin-transform-remove-console": { + "version": "6.8.3", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-remove-console/-/babel-plugin-transform-remove-console-6.8.3.tgz", + "integrity": "sha1-MTRBcgMkrSCvD7AJ+lnoECNkYms=", + "dev": true + }, + "babel-plugin-transform-remove-debugger": { + "version": "6.8.3", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-remove-debugger/-/babel-plugin-transform-remove-debugger-6.8.3.tgz", + "integrity": "sha1-UGTy2EO3fOZg66p3YL4w65JbuT8=", + "dev": true + }, + "babel-plugin-transform-remove-undefined": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-remove-undefined/-/babel-plugin-transform-remove-undefined-0.0.4.tgz", + "integrity": "sha1-zHW+BLm717sgBScswWC00IaS13w=", + "dev": true + }, + "babel-plugin-transform-simplify-comparison-operators": { + "version": "6.8.3", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-simplify-comparison-operators/-/babel-plugin-transform-simplify-comparison-operators-6.8.3.tgz", + "integrity": "sha1-LkfhHl+Nwz6XR24CYxUdX9V+HEw=", + "dev": true + }, + "babel-plugin-transform-undefined-to-void": { + "version": "6.8.2", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-undefined-to-void/-/babel-plugin-transform-undefined-to-void-6.8.2.tgz", + "integrity": "sha1-/isdKU6wXodSTrk3JN6m4sPWb6E=", + "dev": true + }, + "babel-polyfill": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.23.0.tgz", + "integrity": "sha1-g2TKYt+Or7gwSZ9pkXdGbDsDSZ0=", + "dev": true + }, + "babel-preset-babili": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/babel-preset-babili/-/babel-preset-babili-0.0.10.tgz", + "integrity": "sha1-WRGJJLd7iY7s2PdaW5fWlHGUQ/8=", + "dev": true + }, + "babel-register": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-register/-/babel-register-6.24.1.tgz", + "integrity": "sha1-fhDhOi9xBlvfrVoXh7pFvKbe118=", + "dev": true, + "dependencies": { + "source-map": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=", + "dev": true + }, + "source-map-support": { + "version": "0.4.15", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.15.tgz", + "integrity": "sha1-AyAt9lwG0r2MfsI2KhkwVv7407E=", + "dev": true + } + } + }, + "babel-runtime": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz", + "integrity": "sha1-CpSJ8UTecO+zzkMArM2zKeL8VDs=", + "dev": true + }, + "babel-template": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.24.1.tgz", + "integrity": "sha1-BK5RTx+Ts6JTfyoPYKWkX7gwgzM=", + "dev": true + }, + "babel-traverse": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.24.1.tgz", + "integrity": "sha1-qzZnP9NW+aCUhlnnszjV/q2zFpU=", + "dev": true + }, + "babel-types": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.24.1.tgz", + "integrity": "sha1-oTaHncFbNga9oNkMH8dDBML/CXU=", + "dev": true, + "dependencies": { + "esutils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", + "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", + "dev": true + } + } + }, + "babili": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/babili/-/babili-0.0.10.tgz", + "integrity": "sha1-ZCv/cCVmCsCCOv5IQ+Yv2uXOwus=", + "dev": true + }, + "babylon": { + "version": "6.17.2", + "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.17.2.tgz", + "integrity": "sha1-IB0l71+JLEG65JSIsI2w3Udun1w=", + "dev": true + }, + "balanced-match": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz", + "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=", + "dev": true + }, + "base62": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/base62/-/base62-0.1.1.tgz", + "integrity": "sha1-e0F0wvlESXU7EcJlHAg9qEGnsIQ=" + }, + "base64-js": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.2.0.tgz", + "integrity": "sha1-o5mS1yNYSBGYK+XikLtqU9hnAPE=", + "dev": true + }, + "bcrypt-pbkdf": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz", + "integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=", + "dev": true, + "optional": true + }, + "big.js": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.1.3.tgz", + "integrity": "sha1-TK2iGTZS6zyp7I5VyQFWacmAaXg=", + "dev": true + }, + "binary-extensions": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.8.0.tgz", + "integrity": "sha1-SOyNFt9Dd+rl+liEaCSAr02Vx3Q=", + "dev": true + }, + "bl": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.1.tgz", + "integrity": "sha1-ysMo977kVzDUBLaSID/LWQ4XLV4=", + "dev": true, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "readable-stream": { + "version": "2.2.10", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.10.tgz", + "integrity": "sha512-HQEnnoV404e0EtwB9yNiuk2tJ+egeVC8Y9QBAxzDg8DBJt4BzRp+yQuIb/t3FIWkSTmIi+sgx7yVv/ZM0GNoqw==", + "dev": true + }, + "string_decoder": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.1.tgz", + "integrity": "sha1-YuIA8DmVWmgQ2N8KM//A8BNmLZg=", + "dev": true + } + } + }, + "block-stream": { + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz", + "integrity": "sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=", + "dev": true + }, + "bn.js": { + "version": "4.11.6", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.6.tgz", + "integrity": "sha1-UzRK2xRhehP26N0s4okF0cC6MhU=", + "dev": true + }, + "body": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/body/-/body-5.1.0.tgz", + "integrity": "sha1-5LoM5BCkaTYyM2dgnstOZVMSUGk=", + "dev": true + }, + "bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "dev": true, + "dependencies": { + "array-flatten": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.1.tgz", + "integrity": "sha1-Qmu52oQJDBg42BLIFQryCoMx4pY=", + "dev": true + } + } + }, + "boom": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz", + "integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=", + "dev": true + }, + "brace-expansion": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.7.tgz", + "integrity": "sha1-Pv/DxQ4ABTH7cg6v+A8K6O8jz1k=", + "dev": true + }, + "braces": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", + "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", + "dev": true + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", + "dev": true + }, + "browser-resolve": { + "version": "1.11.2", + "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.2.tgz", + "integrity": "sha1-j/CbCixCFxihBRwmCzLkj0QpOM4=", + "dev": true, + "dependencies": { + "resolve": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", + "integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=", + "dev": true + } + } + }, + "browserify-aes": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.0.6.tgz", + "integrity": "sha1-Xncl297x/Vkw1OurSFZ85FHEigo=", + "dev": true + }, + "browserify-cipher": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.0.tgz", + "integrity": "sha1-mYgkSHS/XtTijalWZtzWasj8Njo=", + "dev": true + }, + "browserify-des": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.0.tgz", + "integrity": "sha1-2qJ3cXRwki7S/hhZQRihdUOXId0=", + "dev": true + }, + "browserify-fs": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browserify-fs/-/browserify-fs-1.0.0.tgz", + "integrity": "sha1-8HWqinKdTRcW0GZiDjhvzBMRqW8=", + "dev": true + }, + "browserify-rsa": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", + "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", + "dev": true + }, + "browserify-sign": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz", + "integrity": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=", + "dev": true + }, + "browserify-zlib": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz", + "integrity": "sha1-uzX4pRn2AOD6a4SFJByXnQFB+y0=", + "dev": true + }, + "buffer": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz", + "integrity": "sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg=", + "dev": true, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + } + } + }, + "buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=", + "dev": true + }, + "buffer-es6": { + "version": "4.9.3", + "resolved": "https://registry.npmjs.org/buffer-es6/-/buffer-es6-4.9.3.tgz", + "integrity": "sha1-8mNHuC33b9N+GLy1KIxJcM/VxAQ=", + "dev": true + }, + "buffer-indexof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.0.tgz", + "integrity": "sha1-9U9kfE9OJSKLqmVqLlfkPV8nCYI=", + "dev": true + }, + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", + "dev": true + }, + "builtin-modules": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", + "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=", + "dev": true + }, + "builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=", + "dev": true + }, + "bytes": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-1.0.0.tgz", + "integrity": "sha1-NWnt6Lo0MV+rmcPpLLBMciDeH6g=", + "dev": true + }, + "camelcase": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", + "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=", + "dev": true + }, + "camelcase-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", + "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", + "dev": true + }, + "caniuse-db": { + "version": "1.0.30000676", + "resolved": "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000676.tgz", + "integrity": "sha1-gupXgjdjfI/zSiisqt43O2JMTqg=", + "dev": true + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", + "dev": true + }, + "center-align": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz", + "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=", + "dev": true + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true + } + } + }, + "chokidar": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-1.6.1.tgz", + "integrity": "sha1-L0RHq16W5Q+z14n9kNTHLg5McMI=", + "dev": true + }, + "cipher-base": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.3.tgz", + "integrity": "sha1-7qvxlEGc6QDaMBjCB9IS8qbfCgc=", + "dev": true + }, + "cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", + "dev": true + }, + "cli-width": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.1.0.tgz", + "integrity": "sha1-sjTKIJsp72b8UY2bmNWEewDt8Ao=", + "dev": true + }, + "cliui": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", + "dev": true + }, + "clone": { + "version": "0.1.19", + "resolved": "https://registry.npmjs.org/clone/-/clone-0.1.19.tgz", + "integrity": "sha1-YT+2hjmyaklKxTJT4Vsaa9iK2oU=", + "dev": true + }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", + "dev": true + }, + "code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", + "dev": true + }, + "colors": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz", + "integrity": "sha1-FopHAXVran9RoSzgyXv6KMCE7WM=", + "dev": true + }, + "combined-stream": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz", + "integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=", + "dev": true + }, + "commander": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz", + "integrity": "sha1-Br42f+v9oMMwqh4qBy09yXYkJdQ=", + "dev": true + }, + "component-emitter": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", + "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=", + "dev": true + }, + "compress-commons": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-1.2.0.tgz", + "integrity": "sha1-WFhwku8g03y1i68AARLJJ4/3O58=", + "dev": true, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "readable-stream": { + "version": "2.2.10", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.10.tgz", + "integrity": "sha512-HQEnnoV404e0EtwB9yNiuk2tJ+egeVC8Y9QBAxzDg8DBJt4BzRp+yQuIb/t3FIWkSTmIi+sgx7yVv/ZM0GNoqw==", + "dev": true + }, + "string_decoder": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.1.tgz", + "integrity": "sha1-YuIA8DmVWmgQ2N8KM//A8BNmLZg=", + "dev": true + } + } + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "concat-stream": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.0.tgz", + "integrity": "sha1-CqxmL9Ur54lk1VMvaUeE5wEQrPc=", + "dev": true, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "readable-stream": { + "version": "2.2.10", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.10.tgz", + "integrity": "sha512-HQEnnoV404e0EtwB9yNiuk2tJ+egeVC8Y9QBAxzDg8DBJt4BzRp+yQuIb/t3FIWkSTmIi+sgx7yVv/ZM0GNoqw==", + "dev": true + }, + "string_decoder": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.1.tgz", + "integrity": "sha1-YuIA8DmVWmgQ2N8KM//A8BNmLZg=", + "dev": true + } + } + }, + "console-browserify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz", + "integrity": "sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA=", + "dev": true + }, + "console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", + "dev": true + }, + "constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=", + "dev": true + }, + "content-type": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.2.tgz", + "integrity": "sha1-t9ETrueo3Se9IRM8TcJSnfFyHu0=", + "dev": true + }, + "continuable-cache": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/continuable-cache/-/continuable-cache-0.3.1.tgz", + "integrity": "sha1-vXJ6f67XfnH/OYWskzUakSczrQ8=", + "dev": true + }, + "convert-source-map": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.0.tgz", + "integrity": "sha1-ms1whRxtXf3ZPZKC5e35SgP/RrU=", + "dev": true + }, + "cookie": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", + "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=", + "dev": true + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", + "dev": true + }, + "cookiejar": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.1.tgz", + "integrity": "sha1-Qa1XsbVVlR7BcUEqgZQrHoIA00o=", + "dev": true + }, + "cordova-android": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/cordova-android/-/cordova-android-6.1.2.tgz", + "integrity": "sha1-lgZzmhFPCjf0kFPjZMlthPtGK/g=", + "dependencies": { + "abbrev": { + "version": "1.0.9", + "bundled": true + }, + "ansi": { + "version": "0.3.1", + "bundled": true + }, + "balanced-match": { + "version": "0.4.2", + "bundled": true + }, + "base64-js": { + "version": "0.0.8", + "bundled": true + }, + "big-integer": { + "version": "1.6.16", + "bundled": true + }, + "bplist-parser": { + "version": "0.1.1", + "bundled": true + }, + "brace-expansion": { + "version": "1.1.6", + "bundled": true + }, + "concat-map": { + "version": "0.0.1", + "bundled": true + }, + "cordova-common": { + "version": "1.5.1", + "bundled": true + }, + "cordova-registry-mapper": { + "version": "1.1.15", + "bundled": true + }, + "elementtree": { + "version": "0.1.6", + "bundled": true + }, + "glob": { + "version": "5.0.15", + "bundled": true + }, + "inflight": { + "version": "1.0.6", + "bundled": true + }, + "inherits": { + "version": "2.0.3", + "bundled": true + }, + "lodash": { + "version": "3.10.1", + "bundled": true + }, + "minimatch": { + "version": "3.0.3", + "bundled": true + }, + "nopt": { + "version": "3.0.6", + "bundled": true + }, + "once": { + "version": "1.4.0", + "bundled": true + }, + "os-homedir": { + "version": "1.0.2", + "bundled": true + }, + "os-tmpdir": { + "version": "1.0.2", + "bundled": true + }, + "osenv": { + "version": "0.1.3", + "bundled": true + }, + "path-is-absolute": { + "version": "1.0.1", + "bundled": true + }, + "plist": { + "version": "1.2.0", + "bundled": true + }, + "properties-parser": { + "version": "0.2.3", + "bundled": true + }, + "q": { + "version": "1.4.1", + "bundled": true + }, + "sax": { + "version": "0.3.5", + "bundled": true + }, + "semver": { + "version": "5.3.0", + "bundled": true + }, + "shelljs": { + "version": "0.5.3", + "bundled": true + }, + "underscore": { + "version": "1.8.3", + "bundled": true + }, + "unorm": { + "version": "1.4.1", + "bundled": true + }, + "util-deprecate": { + "version": "1.0.2", + "bundled": true + }, + "wrappy": { + "version": "1.0.2", + "bundled": true + }, + "xmlbuilder": { + "version": "4.0.0", + "bundled": true + }, + "xmldom": { + "version": "0.1.22", + "bundled": true + } + } + }, + "cordova-ios": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/cordova-ios/-/cordova-ios-4.4.0.tgz", + "integrity": "sha1-XNbvciRQXbVYRG5GN62X0IeMdO8=", + "dependencies": { + "abbrev": { + "version": "1.0.9", + "bundled": true + }, + "ansi": { + "version": "0.3.1", + "bundled": true + }, + "balanced-match": { + "version": "0.4.2", + "bundled": true + }, + "base64-js": { + "version": "0.0.8", + "bundled": true + }, + "big-integer": { + "version": "1.6.17", + "bundled": true + }, + "bplist-creator": { + "version": "0.0.4", + "bundled": true + }, + "bplist-parser": { + "version": "0.1.1", + "bundled": true + }, + "brace-expansion": { + "version": "1.1.6", + "bundled": true + }, + "concat-map": { + "version": "0.0.1", + "bundled": true + }, + "cordova-common": { + "version": "2.0.2", + "bundled": true + }, + "cordova-registry-mapper": { + "version": "1.1.15", + "bundled": true + }, + "elementtree": { + "version": "0.1.6", + "bundled": true + }, + "glob": { + "version": "5.0.15", + "bundled": true + }, + "inflight": { + "version": "1.0.6", + "bundled": true + }, + "inherits": { + "version": "2.0.3", + "bundled": true + }, + "ios-sim": { + "version": "5.0.12", + "bundled": true, + "dependencies": { + "bplist-parser": { + "version": "0.0.6", + "bundled": true + }, + "nopt": { + "version": "1.0.9", + "bundled": true + } + } + }, + "lodash": { + "version": "3.10.1", + "bundled": true + }, + "minimatch": { + "version": "3.0.3", + "bundled": true + }, + "node-uuid": { + "version": "1.4.7", + "bundled": true + }, + "nopt": { + "version": "3.0.6", + "bundled": true + }, + "once": { + "version": "1.4.0", + "bundled": true + }, + "os-homedir": { + "version": "1.0.2", + "bundled": true + }, + "os-tmpdir": { + "version": "1.0.2", + "bundled": true + }, + "osenv": { + "version": "0.1.3", + "bundled": true + }, + "path-is-absolute": { + "version": "1.0.1", + "bundled": true + }, + "pegjs": { + "version": "0.9.0", + "bundled": true + }, + "plist": { + "version": "1.2.0", + "bundled": true + }, + "q": { + "version": "1.4.1", + "bundled": true + }, + "sax": { + "version": "0.3.5", + "bundled": true + }, + "semver": { + "version": "5.3.0", + "bundled": true + }, + "shelljs": { + "version": "0.5.3", + "bundled": true + }, + "simctl": { + "version": "0.1.0", + "bundled": true, + "dependencies": { + "shelljs": { + "version": "0.2.6", + "bundled": true + } + } + }, + "simple-plist": { + "version": "0.1.4", + "bundled": true, + "dependencies": { + "bplist-parser": { + "version": "0.0.6", + "bundled": true + } + } + }, + "stream-buffers": { + "version": "0.2.6", + "bundled": true + }, + "tail": { + "version": "0.4.0", + "bundled": true + }, + "underscore": { + "version": "1.8.3", + "bundled": true + }, + "unorm": { + "version": "1.4.1", + "bundled": true + }, + "util-deprecate": { + "version": "1.0.2", + "bundled": true + }, + "wrappy": { + "version": "1.0.2", + "bundled": true + }, + "xcode": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/xcode/-/xcode-0.9.3.tgz", + "integrity": "sha1-kQqJwWrubMC0LKgFptC0z4chHPM=", + "dependencies": { + "base64-js": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.1.2.tgz", + "integrity": "sha1-1kAMrBxMZgl22Q0HoENR2JOV9eg=" + }, + "bplist-creator": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.0.7.tgz", + "integrity": "sha1-N98VNgkoJLh8QvlXsBNEEXNyrkU=" + }, + "pegjs": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/pegjs/-/pegjs-0.10.0.tgz", + "integrity": "sha1-z4uvrm7d/0tafvsYUmnqr0YQ3b0=" + }, + "plist": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/plist/-/plist-2.0.1.tgz", + "integrity": "sha1-CjLKlIGxw2TpLhjcVch23p0B2os=" + }, + "simple-plist": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/simple-plist/-/simple-plist-0.2.1.tgz", + "integrity": "sha1-cXZts1IyaSjPOoByQrp2IyJjZyM=" + }, + "stream-buffers": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/stream-buffers/-/stream-buffers-2.2.0.tgz", + "integrity": "sha1-kdX1Ew0c75bc+n9yaUUYh0HQnuQ=" + }, + "xmlbuilder": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-8.2.2.tgz", + "integrity": "sha1-aSSGc0ELS6QuGmE2VR0pIjNap3M=" + } + } + }, + "xml-escape": { + "version": "1.1.0", + "bundled": true + }, + "xmlbuilder": { + "version": "4.0.0", + "bundled": true + }, + "xmldom": { + "version": "0.1.27", + "bundled": true + } + } + }, + "cordova-plugin-console": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/cordova-plugin-console/-/cordova-plugin-console-1.0.5.tgz", + "integrity": "sha1-8OKa7pwDyrnp2IOwHRnyLd1chXA=" + }, + "cordova-plugin-device": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/cordova-plugin-device/-/cordova-plugin-device-1.1.4.tgz", + "integrity": "sha1-1f50cSBp0D9tOG7wvTIbOr0NONw=" + }, + "cordova-plugin-splashscreen": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/cordova-plugin-splashscreen/-/cordova-plugin-splashscreen-4.0.3.tgz", + "integrity": "sha1-dzzRNjwfO6y5kBZj6eN5PdPgoZ0=" + }, + "cordova-plugin-statusbar": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cordova-plugin-statusbar/-/cordova-plugin-statusbar-2.2.1.tgz", + "integrity": "sha1-tRwOGqsrpm7bd85SvyuT/IBsjHA=" + }, + "cordova-plugin-whitelist": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/cordova-plugin-whitelist/-/cordova-plugin-whitelist-1.3.1.tgz", + "integrity": "sha1-n9Hbf9bJVpUdNHcc3Nl/Zs7VFt8=" + }, + "core-js": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz", + "integrity": "sha1-TekR5mew6ukSTjQlS1OupvxhjT4=", + "dev": true + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "crc": { + "version": "3.4.4", + "resolved": "https://registry.npmjs.org/crc/-/crc-3.4.4.tgz", + "integrity": "sha1-naHpgOO9RPxck79as9ozeNheRms=", + "dev": true + }, + "crc32-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-2.0.0.tgz", + "integrity": "sha1-483TtN8xaN10494/u8t7KX/pCPQ=", + "dev": true, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "readable-stream": { + "version": "2.2.10", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.10.tgz", + "integrity": "sha512-HQEnnoV404e0EtwB9yNiuk2tJ+egeVC8Y9QBAxzDg8DBJt4BzRp+yQuIb/t3FIWkSTmIi+sgx7yVv/ZM0GNoqw==", + "dev": true + }, + "string_decoder": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.1.tgz", + "integrity": "sha1-YuIA8DmVWmgQ2N8KM//A8BNmLZg=", + "dev": true + } + } + }, + "create-ecdh": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.0.tgz", + "integrity": "sha1-iIxyNZbN92EvZJgjPuvXo1MBc30=", + "dev": true + }, + "create-hash": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.1.3.tgz", + "integrity": "sha1-YGBCrIuSYnUPSDyt2rD1gZFy2P0=", + "dev": true + }, + "create-hmac": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.6.tgz", + "integrity": "sha1-rLniIaThe9sHbpBlfEK5PjcmzwY=", + "dev": true + }, + "cryptiles": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz", + "integrity": "sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g=", + "dev": true + }, + "crypto-browserify": { + "version": "3.11.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.11.0.tgz", + "integrity": "sha1-NlKgkGq5sqfgw85mpAjpV6JIVSI=", + "dev": true + }, + "currently-unhandled": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", + "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", + "dev": true + }, + "dargs": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/dargs/-/dargs-5.1.0.tgz", + "integrity": "sha1-7H6lDHhWTNNsnV7Bj2Yyn63ieCk=", + "dev": true + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "dev": true, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "dev": true + } + } + }, + "date-now": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz", + "integrity": "sha1-6vQ5/U1ISK105cx9vvIAZyueNFs=", + "dev": true + }, + "debug": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", + "dev": true + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true + }, + "deep-equal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz", + "integrity": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=", + "dev": true + }, + "deferred-leveldown": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/deferred-leveldown/-/deferred-leveldown-0.2.0.tgz", + "integrity": "sha1-LO8fER4cV4cNi7uK8mUOWHzS9bQ=", + "dev": true + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "dev": true + }, + "delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", + "dev": true + }, + "depd": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.0.tgz", + "integrity": "sha1-4b2Cxqq2ztlluXuIsX7T5SjKGMM=", + "dev": true + }, + "des.js": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz", + "integrity": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=", + "dev": true + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", + "dev": true + }, + "detect-indent": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz", + "integrity": "sha1-920GQ1LN9Docts5hnE7jqUdd4gg=", + "dev": true + }, + "diff": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/diff/-/diff-2.2.3.tgz", + "integrity": "sha1-YOr9DSjukG5Oj/ClLBIpUhAzv5k=", + "dev": true + }, + "diffie-hellman": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.2.tgz", + "integrity": "sha1-tYNXOScM/ias9jIJn97SoH8gnl4=", + "dev": true + }, + "dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=", + "dev": true + }, + "dns-packet": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.1.1.tgz", + "integrity": "sha1-I2nUUDivBF84mOb6VoYq7T9AKWw=", + "dev": true + }, + "dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", + "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "dev": true + }, + "doctrine": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-0.7.2.tgz", + "integrity": "sha1-fLhgNZujvpDgQLJrcpzkv6ZUxSM=", + "dev": true + }, + "domain-browser": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.1.7.tgz", + "integrity": "sha1-hnqksJP6oF8d4IwG9NeyH9+GmLw=", + "dev": true + }, + "ecc-jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz", + "integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=", + "dev": true, + "optional": true + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", + "dev": true + }, + "electron-to-chromium": { + "version": "1.3.13", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.13.tgz", + "integrity": "sha1-GzperObgh7teJXoQCwy/6Bsokfw=", + "dev": true + }, + "elliptic": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.4.0.tgz", + "integrity": "sha1-ysmvh2LIWDYYcAPI3+GT5eLq5d8=", + "dev": true + }, + "emojis-list": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", + "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", + "dev": true + }, + "encodeurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.1.tgz", + "integrity": "sha1-eePVhlU0aQn+bw9Fpd5oEDspTSA=", + "dev": true + }, + "end-of-stream": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.0.tgz", + "integrity": "sha1-epDYM+/abPpurA9JSduw+tOmMgY=", + "dev": true + }, + "enhanced-resolve": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-3.1.0.tgz", + "integrity": "sha1-n0tib1dyRe3PSyrYPYbhf09CHew=", + "dev": true + }, + "errno": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.4.tgz", + "integrity": "sha1-uJbiOp5ei6M4cfyZar02NfyaHH0=", + "dev": true + }, + "error": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/error/-/error-7.0.2.tgz", + "integrity": "sha1-pfdf/02ZJhJt2sDqXcOOaJFTywI=", + "dev": true + }, + "error-ex": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz", + "integrity": "sha1-+FWobOYa3E6GIcPNoh56dhLDqNw=", + "dev": true + }, + "es3ify": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/es3ify/-/es3ify-0.1.4.tgz", + "integrity": "sha1-rZ+l3xrjTz8x4SEbWBiy1RB439E=" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + }, + "esmangle-evaluator": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/esmangle-evaluator/-/esmangle-evaluator-1.0.1.tgz", + "integrity": "sha1-Yg2GbvSGGzMR91dm1SqFcrs8YzY=" + }, + "esprima-fb": { + "version": "3001.1.0-dev-harmony-fb", + "resolved": "https://registry.npmjs.org/esprima-fb/-/esprima-fb-3001.0001.0000-dev-harmony-fb.tgz", + "integrity": "sha1-t303q8046gt3Qmu4vCkizmtCZBE=" + }, + "esutils": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-1.1.6.tgz", + "integrity": "sha1-wBzKqa5LiXxtDD4hCuUvPHqEQ3U=", + "dev": true + }, + "etag": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.7.0.tgz", + "integrity": "sha1-A9MLX2fdbmMtKUXTDWZScxo01dg=", + "dev": true + }, + "events": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/events/-/events-1.1.1.tgz", + "integrity": "sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ=", + "dev": true + }, + "evp_bytestokey": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz", + "integrity": "sha1-SXtmrZ/vZc18CKYYCCS6FHa2blM=", + "dev": true + }, + "expand-brackets": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", + "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", + "dev": true + }, + "expand-range": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", + "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=", + "dev": true + }, + "extend": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", + "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=", + "dev": true + }, + "external-editor": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-2.0.4.tgz", + "integrity": "sha1-HtkZnanL/i7y96MbL96LDRI2iXI=", + "dev": true + }, + "extglob": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", + "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", + "dev": true + }, + "extsprintf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.0.2.tgz", + "integrity": "sha1-4QgOBljjALBilJkMxw4VAiNf1VA=", + "dev": true + }, + "falafel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/falafel/-/falafel-1.2.0.tgz", + "integrity": "sha1-wY0k71CRF0pJfzGM0ksCaiXN2rQ=" + }, + "faye-websocket": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz", + "integrity": "sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=", + "dev": true + }, + "figures": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", + "dev": true + }, + "filename-regex": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz", + "integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=", + "dev": true + }, + "fill-range": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz", + "integrity": "sha1-ULd9/X5Gm8dJJHCWNpn+eoSFpyM=", + "dev": true + }, + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "dev": true + }, + "findup-sync": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz", + "integrity": "sha1-N5MKpdgWt3fANEXhlmzGeQpMCxY=", + "dev": true, + "dependencies": { + "glob": { + "version": "5.0.15", + "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", + "integrity": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=", + "dev": true + } + } + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true + }, + "for-own": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", + "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", + "dev": true + }, + "foreach": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", + "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=" + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "dev": true + }, + "form-data": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz", + "integrity": "sha1-M8GDrPGTJ27KqYFDpp6Uv+4XUNE=", + "dev": true + }, + "formidable": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/formidable/-/formidable-1.1.1.tgz", + "integrity": "sha1-lriIb3w8NQi5Mta9cMTTqI818ak=", + "dev": true + }, + "forwarded": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.0.tgz", + "integrity": "sha1-Ge+YdMSuHCl7zweP3mOgm2aoQ2M=", + "dev": true + }, + "fresh": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.3.0.tgz", + "integrity": "sha1-ZR+DjiJCTnVm3hYdg1jKoZn4PU8=", + "dev": true + }, + "fs-readdir-recursive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz", + "integrity": "sha1-jNF0XItPiinIyuw5JHaSG6GV9WA=", + "dev": true + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "fsevents": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.1.1.tgz", + "integrity": "sha1-8Z/Sj0Pur3YWgOUZogPE0LPTGv8=", + "dev": true, + "optional": true, + "dependencies": { + "abbrev": { + "version": "1.1.0", + "bundled": true, + "dev": true, + "optional": true + }, + "ansi-regex": { + "version": "2.1.1", + "bundled": true, + "dev": true + }, + "ansi-styles": { + "version": "2.2.1", + "bundled": true, + "dev": true, + "optional": true + }, + "aproba": { + "version": "1.1.1", + "bundled": true, + "dev": true, + "optional": true + }, + "are-we-there-yet": { + "version": "1.1.2", + "bundled": true, + "dev": true, + "optional": true + }, + "asn1": { + "version": "0.2.3", + "bundled": true, + "dev": true, + "optional": true + }, + "assert-plus": { + "version": "0.2.0", + "bundled": true, + "dev": true, + "optional": true + }, + "asynckit": { + "version": "0.4.0", + "bundled": true, + "dev": true, + "optional": true + }, + "aws-sign2": { + "version": "0.6.0", + "bundled": true, + "dev": true, + "optional": true + }, + "aws4": { + "version": "1.6.0", + "bundled": true, + "dev": true, + "optional": true + }, + "balanced-match": { + "version": "0.4.2", + "bundled": true, + "dev": true + }, + "bcrypt-pbkdf": { + "version": "1.0.1", + "bundled": true, + "dev": true, + "optional": true + }, + "block-stream": { + "version": "0.0.9", + "bundled": true, + "dev": true + }, + "boom": { + "version": "2.10.1", + "bundled": true, + "dev": true + }, + "brace-expansion": { + "version": "1.1.6", + "bundled": true, + "dev": true + }, + "buffer-shims": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "caseless": { + "version": "0.11.0", + "bundled": true, + "dev": true, + "optional": true + }, + "chalk": { + "version": "1.1.3", + "bundled": true, + "dev": true, + "optional": true + }, + "code-point-at": { + "version": "1.1.0", + "bundled": true, + "dev": true + }, + "combined-stream": { + "version": "1.0.5", + "bundled": true, + "dev": true + }, + "commander": { + "version": "2.9.0", + "bundled": true, + "dev": true, + "optional": true + }, + "concat-map": { + "version": "0.0.1", + "bundled": true, + "dev": true + }, + "console-control-strings": { + "version": "1.1.0", + "bundled": true, + "dev": true + }, + "core-util-is": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "cryptiles": { + "version": "2.0.5", + "bundled": true, + "dev": true, + "optional": true + }, + "dashdash": { + "version": "1.14.1", + "bundled": true, + "dev": true, + "optional": true, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "optional": true + } + } + }, + "debug": { + "version": "2.2.0", + "bundled": true, + "dev": true, + "optional": true + }, + "deep-extend": { + "version": "0.4.1", + "bundled": true, + "dev": true, + "optional": true + }, + "delayed-stream": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "delegates": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "ecc-jsbn": { + "version": "0.1.1", + "bundled": true, + "dev": true, + "optional": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "bundled": true, + "dev": true, + "optional": true + }, + "extend": { + "version": "3.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "extsprintf": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "forever-agent": { + "version": "0.6.1", + "bundled": true, + "dev": true, + "optional": true + }, + "form-data": { + "version": "2.1.2", + "bundled": true, + "dev": true, + "optional": true + }, + "fs.realpath": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "fstream": { + "version": "1.0.10", + "bundled": true, + "dev": true + }, + "fstream-ignore": { + "version": "1.0.5", + "bundled": true, + "dev": true, + "optional": true + }, + "gauge": { + "version": "2.7.3", + "bundled": true, + "dev": true, + "optional": true + }, + "generate-function": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "generate-object-property": { + "version": "1.2.0", + "bundled": true, + "dev": true, + "optional": true + }, + "getpass": { + "version": "0.1.6", + "bundled": true, + "dev": true, + "optional": true, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "optional": true + } + } + }, + "glob": { + "version": "7.1.1", + "bundled": true, + "dev": true + }, + "graceful-fs": { + "version": "4.1.11", + "bundled": true, + "dev": true + }, + "graceful-readlink": { + "version": "1.0.1", + "bundled": true, + "dev": true, + "optional": true + }, + "har-validator": { + "version": "2.0.6", + "bundled": true, + "dev": true, + "optional": true + }, + "has-ansi": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "has-unicode": { + "version": "2.0.1", + "bundled": true, + "dev": true, + "optional": true + }, + "hawk": { + "version": "3.1.3", + "bundled": true, + "dev": true, + "optional": true + }, + "hoek": { + "version": "2.16.3", + "bundled": true, + "dev": true + }, + "http-signature": { + "version": "1.1.1", + "bundled": true, + "dev": true, + "optional": true + }, + "inflight": { + "version": "1.0.6", + "bundled": true, + "dev": true + }, + "inherits": { + "version": "2.0.3", + "bundled": true, + "dev": true + }, + "ini": { + "version": "1.3.4", + "bundled": true, + "dev": true, + "optional": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "is-my-json-valid": { + "version": "2.15.0", + "bundled": true, + "dev": true, + "optional": true + }, + "is-property": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "is-typedarray": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "isarray": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "isstream": { + "version": "0.1.2", + "bundled": true, + "dev": true, + "optional": true + }, + "jodid25519": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "jsbn": { + "version": "0.1.1", + "bundled": true, + "dev": true, + "optional": true + }, + "json-schema": { + "version": "0.2.3", + "bundled": true, + "dev": true, + "optional": true + }, + "json-stringify-safe": { + "version": "5.0.1", + "bundled": true, + "dev": true, + "optional": true + }, + "jsonpointer": { + "version": "4.0.1", + "bundled": true, + "dev": true, + "optional": true + }, + "jsprim": { + "version": "1.3.1", + "bundled": true, + "dev": true, + "optional": true + }, + "mime-db": { + "version": "1.26.0", + "bundled": true, + "dev": true + }, + "mime-types": { + "version": "2.1.14", + "bundled": true, + "dev": true + }, + "minimatch": { + "version": "3.0.3", + "bundled": true, + "dev": true + }, + "minimist": { + "version": "0.0.8", + "bundled": true, + "dev": true + }, + "mkdirp": { + "version": "0.5.1", + "bundled": true, + "dev": true + }, + "ms": { + "version": "0.7.1", + "bundled": true, + "dev": true, + "optional": true + }, + "node-pre-gyp": { + "version": "0.6.33", + "bundled": true, + "dev": true, + "optional": true + }, + "nopt": { + "version": "3.0.6", + "bundled": true, + "dev": true, + "optional": true + }, + "npmlog": { + "version": "4.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "number-is-nan": { + "version": "1.0.1", + "bundled": true, + "dev": true + }, + "oauth-sign": { + "version": "0.8.2", + "bundled": true, + "dev": true, + "optional": true + }, + "object-assign": { + "version": "4.1.1", + "bundled": true, + "dev": true, + "optional": true + }, + "once": { + "version": "1.4.0", + "bundled": true, + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "bundled": true, + "dev": true + }, + "pinkie": { + "version": "2.0.4", + "bundled": true, + "dev": true, + "optional": true + }, + "pinkie-promise": { + "version": "2.0.1", + "bundled": true, + "dev": true, + "optional": true + }, + "process-nextick-args": { + "version": "1.0.7", + "bundled": true, + "dev": true + }, + "punycode": { + "version": "1.4.1", + "bundled": true, + "dev": true, + "optional": true + }, + "qs": { + "version": "6.3.1", + "bundled": true, + "dev": true, + "optional": true + }, + "rc": { + "version": "1.1.7", + "bundled": true, + "dev": true, + "optional": true, + "dependencies": { + "minimist": { + "version": "1.2.0", + "bundled": true, + "dev": true, + "optional": true + } + } + }, + "readable-stream": { + "version": "2.2.2", + "bundled": true, + "dev": true, + "optional": true + }, + "request": { + "version": "2.79.0", + "bundled": true, + "dev": true, + "optional": true + }, + "rimraf": { + "version": "2.5.4", + "bundled": true, + "dev": true + }, + "semver": { + "version": "5.3.0", + "bundled": true, + "dev": true, + "optional": true + }, + "set-blocking": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "signal-exit": { + "version": "3.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "sntp": { + "version": "1.0.9", + "bundled": true, + "dev": true, + "optional": true + }, + "sshpk": { + "version": "1.10.2", + "bundled": true, + "dev": true, + "optional": true, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "optional": true + } + } + }, + "string_decoder": { + "version": "0.10.31", + "bundled": true, + "dev": true + }, + "string-width": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "stringstream": { + "version": "0.0.5", + "bundled": true, + "dev": true, + "optional": true + }, + "strip-ansi": { + "version": "3.0.1", + "bundled": true, + "dev": true + }, + "strip-json-comments": { + "version": "2.0.1", + "bundled": true, + "dev": true, + "optional": true + }, + "supports-color": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "tar": { + "version": "2.2.1", + "bundled": true, + "dev": true + }, + "tar-pack": { + "version": "3.3.0", + "bundled": true, + "dev": true, + "optional": true, + "dependencies": { + "once": { + "version": "1.3.3", + "bundled": true, + "dev": true, + "optional": true + }, + "readable-stream": { + "version": "2.1.5", + "bundled": true, + "dev": true, + "optional": true + } + } + }, + "tough-cookie": { + "version": "2.3.2", + "bundled": true, + "dev": true, + "optional": true + }, + "tunnel-agent": { + "version": "0.4.3", + "bundled": true, + "dev": true, + "optional": true + }, + "tweetnacl": { + "version": "0.14.5", + "bundled": true, + "dev": true, + "optional": true + }, + "uid-number": { + "version": "0.0.6", + "bundled": true, + "dev": true, + "optional": true + }, + "util-deprecate": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "uuid": { + "version": "3.0.1", + "bundled": true, + "dev": true, + "optional": true + }, + "verror": { + "version": "1.3.6", + "bundled": true, + "dev": true, + "optional": true + }, + "wide-align": { + "version": "1.1.0", + "bundled": true, + "dev": true, + "optional": true + }, + "wrappy": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "xtend": { + "version": "4.0.1", + "bundled": true, + "dev": true, + "optional": true + } + } + }, + "fstream": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.11.tgz", + "integrity": "sha1-XB+x8RdHcRTwYyoOtLcbPLD9MXE=", + "dev": true + }, + "fwd-stream": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/fwd-stream/-/fwd-stream-1.0.4.tgz", + "integrity": "sha1-7Sgcq+1G/uz5Ie4y3ExQs3KsfPo=", + "dev": true + }, + "gauge": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", + "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", + "dev": true + }, + "gaze": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.2.tgz", + "integrity": "sha1-hHIkZ3rbiHDWeSV+0ziP22HkAQU=", + "dev": true + }, + "get-caller-file": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz", + "integrity": "sha1-9wLmMSfn4jHBYKgMFVSstw1QR+U=", + "dev": true + }, + "get-stdin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", + "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", + "dev": true + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "dev": true, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "dev": true + } + } + }, + "glob": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", + "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "dev": true + }, + "glob-base": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz", + "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=", + "dev": true + }, + "glob-parent": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", + "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", + "dev": true + }, + "globals": { + "version": "9.17.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-9.17.0.tgz", + "integrity": "sha1-DAymltm5u2lNLlRwvTd3fKrVAoY=", + "dev": true + }, + "globule": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/globule/-/globule-1.1.0.tgz", + "integrity": "sha1-xJNS5NwYPYWJPuglOF65lLtt9F8=", + "dev": true + }, + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", + "dev": true + }, + "graceful-readlink": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", + "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=", + "dev": true + }, + "har-schema": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz", + "integrity": "sha1-0mMTX0MwfALGAq/I/pWXDAFRNp4=", + "dev": true + }, + "har-validator": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz", + "integrity": "sha1-M0gdDxu/9gDdID11gSpqX7oALio=", + "dev": true + }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "dev": true + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", + "dev": true + }, + "has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", + "dev": true + }, + "hash-base": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-2.0.2.tgz", + "integrity": "sha1-ZuodhW206KVHDK32/OI65SRO8uE=", + "dev": true + }, + "hash.js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.0.3.tgz", + "integrity": "sha1-EzL/ABVsCg/92CNgE9B7d6BFFXM=", + "dev": true + }, + "hawk": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz", + "integrity": "sha1-B4REvXwWQLD+VA0sm3PVlnjo4cQ=", + "dev": true + }, + "hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "dev": true + }, + "hoek": { + "version": "2.16.3", + "resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz", + "integrity": "sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0=", + "dev": true + }, + "home-or-tmp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz", + "integrity": "sha1-42w/LSyufXRqhX440Y1fMqeILbg=", + "dev": true + }, + "hosted-git-info": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.4.2.tgz", + "integrity": "sha1-AHa59GonBQbduq6lZJaJdGBhKmc=", + "dev": true + }, + "http-errors": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.5.1.tgz", + "integrity": "sha1-eIwNLB3iyBuebowBhDtrl+uSB1A=", + "dev": true + }, + "http-signature": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz", + "integrity": "sha1-33LiZwZs0Kxn+3at+OE0qPvPkb8=", + "dev": true + }, + "https-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-0.0.1.tgz", + "integrity": "sha1-P5E2XKvmC3ftDruiS0VOPgnZWoI=", + "dev": true + }, + "iconv-lite": { + "version": "0.4.17", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.17.tgz", + "integrity": "sha1-T9qjs4rLwsAxsEXQ7c3+HsqxjI0=", + "dev": true + }, + "idb-wrapper": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/idb-wrapper/-/idb-wrapper-1.7.1.tgz", + "integrity": "sha1-ajJnASLhc6hOzFz6lmj6LOsiGwQ=", + "dev": true + }, + "ieee754": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.8.tgz", + "integrity": "sha1-vjPUCsEO8ZJnAfbwii2G+/0a0+Q=", + "dev": true + }, + "immediate": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", + "integrity": "sha1-nbHb0Pr43m++D13V5Wu2BigN5ps=" + }, + "in-publish": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/in-publish/-/in-publish-2.0.0.tgz", + "integrity": "sha1-4g/146KvwmkDILbcVSaCqcf631E=", + "dev": true + }, + "indent-string": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", + "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", + "dev": true + }, + "indexof": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz", + "integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "inline-process-browser": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/inline-process-browser/-/inline-process-browser-1.0.0.tgz", + "integrity": "sha1-RqYbFT3TybFiSxoAYm7bT39BTyI=" + }, + "inquirer": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-3.0.6.tgz", + "integrity": "sha1-4EqqnQW3o8ubD0B9BDdfBEcZA0c=", + "dev": true, + "dependencies": { + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "string-width": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.0.0.tgz", + "integrity": "sha1-Y1xUNsxypuDDh87KJ41OLuxSaH4=", + "dev": true + } + } + }, + "interpret": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.0.3.tgz", + "integrity": "sha1-y8NcYu7uc/Gat7EKgBURQBr8D5A=", + "dev": true + }, + "invariant": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.2.tgz", + "integrity": "sha1-nh9WrArNtr8wMwbzOL47IErmA2A=", + "dev": true + }, + "invert-kv": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", + "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=", + "dev": true + }, + "ionic-angular": { + "version": "2.0.0-rc.4", + "resolved": "https://registry.npmjs.org/ionic-angular/-/ionic-angular-2.0.0-rc.4.tgz", + "integrity": "sha1-AqNTxDN6LxErK7wDy27piGLsR2A=" + }, + "ionic-native": { + "version": "2.2.11", + "resolved": "https://registry.npmjs.org/ionic-native/-/ionic-native-2.2.11.tgz", + "integrity": "sha1-Uj5AMvzizzp1ua6uegYxm4ptGK4=" + }, + "ionic-plugin-keyboard": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ionic-plugin-keyboard/-/ionic-plugin-keyboard-2.2.1.tgz", + "integrity": "sha1-8qnhabvptVIkADR8n9bTRn7j+hI=" + }, + "ionicons": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-3.0.0.tgz", + "integrity": "sha1-QLja9P16MRUL0AIWD2ZJbiKpjDw=" + }, + "ip": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", + "dev": true + }, + "ipaddr.js": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.3.0.tgz", + "integrity": "sha1-HgOlL9rYOou7KyXL9JmLTP/NPew=", + "dev": true + }, + "is": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/is/-/is-0.2.7.tgz", + "integrity": "sha1-OzSixI81mXLzUEKEkZOucmS2NWI=", + "dev": true + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "dev": true + }, + "is-buffer": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", + "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=", + "dev": true + }, + "is-builtin-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", + "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=", + "dev": true + }, + "is-dotfile": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz", + "integrity": "sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=", + "dev": true + }, + "is-equal-shallow": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz", + "integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=", + "dev": true + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true + }, + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", + "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", + "dev": true + }, + "is-finite": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", + "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true + }, + "is-glob": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", + "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", + "dev": true + }, + "is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=", + "dev": true + }, + "is-number": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", + "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", + "dev": true + }, + "is-object": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/is-object/-/is-object-0.1.2.tgz", + "integrity": "sha1-AO+8CIFsM8/ErIJR0TLhDcZQmNc=", + "dev": true + }, + "is-posix-bracket": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz", + "integrity": "sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=", + "dev": true + }, + "is-primitive": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz", + "integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=", + "dev": true + }, + "is-promise": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", + "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=", + "dev": true + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", + "dev": true + }, + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", + "dev": true + }, + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, + "isbuffer": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/isbuffer/-/isbuffer-0.0.0.tgz", + "integrity": "sha1-OMFG2d9Si4v5sHAcPUPPEt8/w5s=", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + } + } + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", + "dev": true + }, + "jodid25519": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/jodid25519/-/jodid25519-1.0.2.tgz", + "integrity": "sha1-BtSRIlUJNBlHfUJWM2BuDpB4KWc=", + "dev": true, + "optional": true + }, + "js-base64": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.1.9.tgz", + "integrity": "sha1-8OgK4DmkvWVLXygfyT8EqRSn/M4=", + "dev": true + }, + "js-tokens": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.1.tgz", + "integrity": "sha1-COnxMkhKLEWjCQfp3E1VZ7fxFNc=", + "dev": true + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "dev": true, + "optional": true + }, + "jschardet": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jschardet/-/jschardet-1.4.2.tgz", + "integrity": "sha1-KqEH8UKvQSHRRWWdRPUIMJYeaZo=", + "dev": true + }, + "jsesc": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz", + "integrity": "sha1-RsP+yMGJKxKwgz25vHYiF226s0s=", + "dev": true + }, + "json-loader": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/json-loader/-/json-loader-0.5.4.tgz", + "integrity": "sha1-i6oTZaYy9Yo8RtIBdfxgAsluN94=", + "dev": true + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", + "dev": true + }, + "json-stable-stringify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", + "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", + "dev": true + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", + "dev": true + }, + "json5": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", + "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=", + "dev": true + }, + "jsonfile": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz", + "integrity": "sha1-NzaitCi4e72gzIO1P6PWM6NcKug=", + "dev": true + }, + "jsonify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", + "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=", + "dev": true + }, + "jsprim": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.0.tgz", + "integrity": "sha1-o7h+QCmNjDgFUtjMdiigu5WiKRg=", + "dev": true, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "dev": true + } + } + }, + "jstransform": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/jstransform/-/jstransform-3.0.0.tgz", + "integrity": "sha1-olkats7o2XvzvoMNv6IxO4fNZAs=", + "dependencies": { + "source-map": { + "version": "0.1.31", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.31.tgz", + "integrity": "sha1-n3BNDWnZ4TioG63267T94z0VHGE=" + } + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true + }, + "lazy-cache": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", + "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=", + "dev": true + }, + "lazystream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.0.tgz", + "integrity": "sha1-9plf4PggOS9hOWvolGJAe7dxaOQ=", + "dev": true, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "readable-stream": { + "version": "2.2.10", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.10.tgz", + "integrity": "sha512-HQEnnoV404e0EtwB9yNiuk2tJ+egeVC8Y9QBAxzDg8DBJt4BzRp+yQuIb/t3FIWkSTmIi+sgx7yVv/ZM0GNoqw==", + "dev": true + }, + "string_decoder": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.1.tgz", + "integrity": "sha1-YuIA8DmVWmgQ2N8KM//A8BNmLZg=", + "dev": true + } + } + }, + "lcid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", + "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", + "dev": true + }, + "leek": { + "version": "0.0.24", + "resolved": "https://registry.npmjs.org/leek/-/leek-0.0.24.tgz", + "integrity": "sha1-5ADlfw5g2O8r1NBo3EKKVDRdvNo=", + "dev": true, + "dependencies": { + "lodash.assign": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-3.2.0.tgz", + "integrity": "sha1-POnwI0tLIiPilrj6CsH+6OvKZPo=", + "dev": true + } + } + }, + "level-blobs": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/level-blobs/-/level-blobs-0.1.7.tgz", + "integrity": "sha1-mrm5e7mfHtv594o0M+Ie1WOGva8=", + "dev": true + }, + "level-filesystem": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/level-filesystem/-/level-filesystem-1.2.0.tgz", + "integrity": "sha1-oArKmRnEpN+v3KaoEI0iWq3/Y7M=", + "dev": true, + "dependencies": { + "xtend": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.2.0.tgz", + "integrity": "sha1-7vax8ZjByN6vrYsXZaBNrUoBxak=", + "dev": true + } + } + }, + "level-fix-range": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/level-fix-range/-/level-fix-range-1.0.2.tgz", + "integrity": "sha1-vxW5Fa422EcMgh6IPd95zRZCCCg=", + "dev": true + }, + "level-hooks": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/level-hooks/-/level-hooks-4.5.0.tgz", + "integrity": "sha1-G5rmGSKTDzMF0aYfxNg8gQLA3ZM=", + "dev": true + }, + "level-js": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/level-js/-/level-js-2.2.4.tgz", + "integrity": "sha1-vAVfQYBjXUSJtWHJSG+jcOjBFpc=", + "dev": true, + "dependencies": { + "object-keys": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz", + "integrity": "sha1-KKaq50KN0sOpLz2V8hM13SBOAzY=", + "dev": true + }, + "xtend": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz", + "integrity": "sha1-bv7MKk2tjmlixJAbM3znuoe10os=", + "dev": true + } + } + }, + "level-peek": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/level-peek/-/level-peek-1.0.6.tgz", + "integrity": "sha1-vsUccqgu5GTTNkNMfIdsP8vM538=", + "dev": true + }, + "level-sublevel": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/level-sublevel/-/level-sublevel-5.2.3.tgz", + "integrity": "sha1-dEwSxy0ucr543eO5tc2E1iGRQTo=", + "dev": true, + "dependencies": { + "level-fix-range": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/level-fix-range/-/level-fix-range-2.0.0.tgz", + "integrity": "sha1-xBfWIVlEIVGhnZojZ4aPFyTC1Ug=", + "dev": true + }, + "object-keys": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-0.2.0.tgz", + "integrity": "sha1-zd7AKZiwkb5CvxA1rjLknxy26mc=", + "dev": true + }, + "xtend": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.0.6.tgz", + "integrity": "sha1-XqZXptukRwacLlnFihE4ywxebO4=", + "dev": true + } + } + }, + "levelup": { + "version": "0.18.6", + "resolved": "https://registry.npmjs.org/levelup/-/levelup-0.18.6.tgz", + "integrity": "sha1-5qAcsIlhbI7MApHCqb0/DETj5es=", + "dev": true, + "dependencies": { + "bl": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/bl/-/bl-0.8.2.tgz", + "integrity": "sha1-yba8oI0bwuoA/Ir7Txpf0eHGbk4=", + "dev": true + }, + "semver": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-2.3.2.tgz", + "integrity": "sha1-uYSPJdbPNjMwc+ye+IVtQvEjPlI=", + "dev": true + }, + "xtend": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-3.0.0.tgz", + "integrity": "sha1-XM50B7r2Qsunvs2laBEcST9ZZlo=", + "dev": true + } + } + }, + "lie": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/lie/-/lie-3.0.2.tgz", + "integrity": "sha1-/9oh17uibzd8rYZdNkmy/Izjn+o=" + }, + "livereload-js": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/livereload-js/-/livereload-js-2.2.2.tgz", + "integrity": "sha1-bIclfmSKtHW8JOoldFftzB+NC8I=", + "dev": true + }, + "load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", + "dev": true + }, + "loader-runner": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.3.0.tgz", + "integrity": "sha1-9IKuqC1UPgeSFwDVpG7yb9rGuKI=", + "dev": true + }, + "loader-utils": { + "version": "0.2.17", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz", + "integrity": "sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=", + "dev": true + }, + "localforage": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/localforage/-/localforage-1.5.0.tgz", + "integrity": "sha1-a5lOGbVmEfqF3zmS3zl6xKtm6BU=" + }, + "localforage-cordovasqlitedriver": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/localforage-cordovasqlitedriver/-/localforage-cordovasqlitedriver-1.6.0.tgz", + "integrity": "sha1-kCcMqpXusQoDl4Mf4QYRiIUwfXE=" + }, + "lodash": { + "version": "4.16.6", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.16.6.tgz", + "integrity": "sha1-0iyaxmAojzhD4Wun0rXQbMon13c=", + "dev": true + }, + "lodash._baseassign": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz", + "integrity": "sha1-jDigmVAPIVrQnlnxci/QxSv+Ck4=", + "dev": true + }, + "lodash._basecopy": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz", + "integrity": "sha1-jaDmqHbPNEwK2KVIghEd08XHyjY=", + "dev": true + }, + "lodash._bindcallback": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz", + "integrity": "sha1-5THCdkTPi1epnhftlbNcdIeJOS4=", + "dev": true + }, + "lodash._createassigner": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz", + "integrity": "sha1-g4pbri/aymOsIt7o4Z+k5taXCxE=", + "dev": true + }, + "lodash._getnative": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz", + "integrity": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=", + "dev": true + }, + "lodash._isiterateecall": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz", + "integrity": "sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw=", + "dev": true + }, + "lodash.assign": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz", + "integrity": "sha1-DZnzzNem0mHRm9rrkkUAXShYCOc=", + "dev": true + }, + "lodash.clonedeep": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", + "integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=", + "dev": true + }, + "lodash.isarguments": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", + "integrity": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=", + "dev": true + }, + "lodash.isarray": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz", + "integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=", + "dev": true + }, + "lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=", + "dev": true + }, + "lodash.keys": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz", + "integrity": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=", + "dev": true + }, + "lodash.mergewith": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.0.tgz", + "integrity": "sha1-FQzwoWeR9ZA7iJHqsVRgknS96lU=", + "dev": true + }, + "lodash.restparam": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz", + "integrity": "sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU=", + "dev": true + }, + "lodash.some": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz", + "integrity": "sha1-G7nzFO9ri63tE7VJFpsqlF62jk0=", + "dev": true + }, + "longest": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", + "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=", + "dev": true + }, + "loose-envify": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.3.1.tgz", + "integrity": "sha1-0aitM/qc4OcT1l/dCsi3SNR4yEg=", + "dev": true + }, + "loud-rejection": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", + "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=", + "dev": true + }, + "lru-cache": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.0.2.tgz", + "integrity": "sha1-HRdnnAac2l0ECZGgnbwsDbN35V4=", + "dev": true + }, + "ltgt": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/ltgt/-/ltgt-2.2.0.tgz", + "integrity": "sha1-tlul/LNJopkkyOMz98alVi8uSEI=", + "dev": true + }, + "macos-release": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/macos-release/-/macos-release-1.0.0.tgz", + "integrity": "sha1-4WjOj02TQ5mrGsuSpsMJJzBy6xs=", + "dev": true + }, + "map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", + "dev": true + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", + "dev": true + }, + "memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "dev": true, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "readable-stream": { + "version": "2.2.10", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.10.tgz", + "integrity": "sha512-HQEnnoV404e0EtwB9yNiuk2tJ+egeVC8Y9QBAxzDg8DBJt4BzRp+yQuIb/t3FIWkSTmIi+sgx7yVv/ZM0GNoqw==", + "dev": true + }, + "string_decoder": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.1.tgz", + "integrity": "sha1-YuIA8DmVWmgQ2N8KM//A8BNmLZg=", + "dev": true + } + } + }, + "meow": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", + "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", + "dev": true + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", + "dev": true + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", + "dev": true + }, + "micromatch": { + "version": "2.3.11", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", + "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", + "dev": true + }, + "miller-rabin": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.0.tgz", + "integrity": "sha1-SmL7HUKTPAVYOYL0xxb2+55sbT0=", + "dev": true + }, + "mime": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.3.4.tgz", + "integrity": "sha1-EV+eO2s9rylZmDyzjxSaLUDrXVM=", + "dev": true + }, + "mime-db": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.27.0.tgz", + "integrity": "sha1-gg9XIpa70g7CXtVeW13oaeVDbrE=", + "dev": true + }, + "mime-types": { + "version": "2.1.15", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.15.tgz", + "integrity": "sha1-pOv1BkCUVpI3uM9wBGd20J/JKu0=", + "dev": true + }, + "mimic-fn": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.1.0.tgz", + "integrity": "sha1-5md4PZLonb00KBi1IwudYqZyrRg=", + "dev": true + }, + "minimalistic-assert": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz", + "integrity": "sha1-cCvi3aazf0g2vLP121ZkG2Sh09M=", + "dev": true + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true + }, + "minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" + }, + "mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "dependencies": { + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" + } + } + }, + "ms": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", + "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=", + "dev": true + }, + "multicast-dns": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.1.1.tgz", + "integrity": "sha1-bn3oalcIcqsXBYrepxYLvsqBTd4=", + "dev": true + }, + "multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=", + "dev": true + }, + "mute-stream": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", + "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=", + "dev": true + }, + "nan": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.6.2.tgz", + "integrity": "sha1-5P805slf37WuzAjeZZb0NgWn20U=", + "dev": true + }, + "ncp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz", + "integrity": "sha1-GVoh1sRuNh0vsSgbo4uR6d9727M=", + "dev": true + }, + "negotiator": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", + "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=", + "dev": true + }, + "node-gyp": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-3.6.2.tgz", + "integrity": "sha1-m/vlRWIoYoSDjnUOrAUpWFP6HGA=", + "dev": true + }, + "node-libs-browser": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.0.0.tgz", + "integrity": "sha1-o6WeyXAkmFtG6Vg3lkb5bEthZkY=", + "dev": true, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "readable-stream": { + "version": "2.2.10", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.10.tgz", + "integrity": "sha512-HQEnnoV404e0EtwB9yNiuk2tJ+egeVC8Y9QBAxzDg8DBJt4BzRp+yQuIb/t3FIWkSTmIi+sgx7yVv/ZM0GNoqw==", + "dev": true, + "dependencies": { + "string_decoder": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.1.tgz", + "integrity": "sha1-YuIA8DmVWmgQ2N8KM//A8BNmLZg=", + "dev": true + } + } + } + } + }, + "nopt": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz", + "integrity": "sha1-xkZdvwirzU2zWTF/eaxopkayj/k=", + "dev": true + }, + "normalize-package-data": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.3.8.tgz", + "integrity": "sha1-2Bntoqne29H/pWPqQHHZNngilbs=", + "dev": true + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", + "dev": true + }, + "npmlog": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.0.tgz", + "integrity": "sha512-ocolIkZYZt8UveuiDS0yAkkIjid1o7lPG8cYm05yNYzBn8ykQtaiPMEGp8fY9tKdDgm8okpdKzkvu1y9hUYugA==", + "dev": true + }, + "num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", + "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=", + "dev": true + }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "dev": true + }, + "oauth-sign": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", + "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true + }, + "object-keys": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.11.tgz", + "integrity": "sha1-xUYBd4rVYPEULODgG8yotW0TQm0=" + }, + "object.omit": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz", + "integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=", + "dev": true + }, + "octal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/octal/-/octal-1.0.0.tgz", + "integrity": "sha1-Y+cWKmjvvrniE1iNWOmJ0eXEUws=", + "dev": true + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true + }, + "onetime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", + "dev": true + }, + "optimist": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", + "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=", + "dev": true, + "dependencies": { + "minimist": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", + "integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=", + "dev": true + } + } + }, + "options": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/options/-/options-0.0.6.tgz", + "integrity": "sha1-7CLTEoBrtT5zF3Pnza788cZDEo8=", + "dev": true + }, + "os-browserify": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.2.1.tgz", + "integrity": "sha1-Y/xMzuXS13Y9Jrv4YBB45sLgBE8=", + "dev": true + }, + "os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", + "dev": true + }, + "os-locale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", + "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", + "dev": true + }, + "os-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/os-name/-/os-name-2.0.1.tgz", + "integrity": "sha1-uaOGNhwXrjohc27wWZQFyajF3F4=", + "dev": true + }, + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", + "dev": true + }, + "osenv": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.4.tgz", + "integrity": "sha1-Qv5tWVPfBsgGS+bxdsPQWqqjRkQ=", + "dev": true + }, + "output-file-sync": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/output-file-sync/-/output-file-sync-1.1.2.tgz", + "integrity": "sha1-0KM+7+YaIF+suQCS6CZZjVJFznY=", + "dev": true + }, + "pako": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", + "integrity": "sha1-8/dSL073gjSNqBYbrZ7P1Rv4OnU=", + "dev": true + }, + "parse-asn1": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.0.tgz", + "integrity": "sha1-N8T5t+06tlx0gXtfJICTf7+XxxI=", + "dev": true + }, + "parse-glob": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", + "integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=", + "dev": true + }, + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "dev": true + }, + "parse5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-2.2.3.tgz", + "integrity": "sha1-DE/EHBAAxea5PUiwP4CDg3g06fY=" + }, + "parseurl": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.1.tgz", + "integrity": "sha1-yKuMkiO6NIiKpkopeyiFO+wY2lY=", + "dev": true + }, + "path-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz", + "integrity": "sha1-oLhwcpquIUAFt9UDLsLLuw+0RRo=", + "dev": true + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "path-parse": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz", + "integrity": "sha1-PBrfhx6pzWyUMbbqK9dKD/BVxME=", + "dev": true + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", + "dev": true + }, + "path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", + "dev": true + }, + "pbkdf2": { + "version": "3.0.12", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.12.tgz", + "integrity": "sha1-vjZ4XFBn6kjYBv+SMojF91C2uKI=", + "dev": true + }, + "performance-now": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz", + "integrity": "sha1-M+8wxcd9TqIcWlOGnZG1bY8lVeU=", + "dev": true + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "dev": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dev": true + }, + "postcss-value-parser": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz", + "integrity": "sha1-h/OPnxj3dKSrTIojL1xc6IcqnRU=", + "dev": true + }, + "preserve": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz", + "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=", + "dev": true + }, + "private": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/private/-/private-0.1.7.tgz", + "integrity": "sha1-aM5eih7woju1cMwoU3tTMqumPvE=" + }, + "process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", + "dev": true + }, + "process-es6": { + "version": "0.11.6", + "resolved": "https://registry.npmjs.org/process-es6/-/process-es6-0.11.6.tgz", + "integrity": "sha1-xrs4n5qVH4K9TrFpYAEFvS/5x3g=", + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + }, + "proxy-addr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-1.1.4.tgz", + "integrity": "sha1-J+VF9pYKRKYn2bREZ+NcG2tM4vM=", + "dev": true + }, + "proxy-middleware": { + "version": "0.15.0", + "resolved": "https://registry.npmjs.org/proxy-middleware/-/proxy-middleware-0.15.0.tgz", + "integrity": "sha1-o/3xvvtzD5UZZYcqwvYHTGFHelY=", + "dev": true + }, + "prr": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/prr/-/prr-0.0.0.tgz", + "integrity": "sha1-GoS4WQgyVQFBGFPQCB7j+obikmo=", + "dev": true + }, + "pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", + "dev": true + }, + "public-encrypt": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.0.tgz", + "integrity": "sha1-OfaZ86RlYN1eusvKaTyvfGXBjMY=", + "dev": true + }, + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", + "dev": true + }, + "qs": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.2.0.tgz", + "integrity": "sha1-O3hIwDwt7OaalSKw+ujEEm10Xzs=", + "dev": true + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", + "dev": true + }, + "querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", + "dev": true + }, + "randomatic": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-1.1.6.tgz", + "integrity": "sha1-EQ3Kv/OX6dz/fAeJzMCkmt8exbs=", + "dev": true + }, + "randombytes": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.0.4.tgz", + "integrity": "sha1-lVHfIIQiyPgOtY4jJt0LhA/yLv0=", + "dev": true + }, + "range-parser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", + "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=", + "dev": true + }, + "raw-body": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-1.1.7.tgz", + "integrity": "sha1-HQJ8K/oRasxmI7yo8AAWVyqH1CU=", + "dev": true + }, + "read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", + "dev": true + }, + "read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", + "dev": true + }, + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=" + }, + "readdirp": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz", + "integrity": "sha1-TtCtBg3zBzMAxIRANz9y0cxkLXg=", + "dev": true, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "readable-stream": { + "version": "2.2.10", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.10.tgz", + "integrity": "sha512-HQEnnoV404e0EtwB9yNiuk2tJ+egeVC8Y9QBAxzDg8DBJt4BzRp+yQuIb/t3FIWkSTmIi+sgx7yVv/ZM0GNoqw==", + "dev": true + }, + "string_decoder": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.1.tgz", + "integrity": "sha1-YuIA8DmVWmgQ2N8KM//A8BNmLZg=", + "dev": true + } + } + }, + "recast": { + "version": "0.10.43", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.10.43.tgz", + "integrity": "sha1-uV1Q9tYHYaX2JS4V2AZ4FoSRzn8=", + "dependencies": { + "esprima-fb": { + "version": "15001.1001.0-dev-harmony-fb", + "resolved": "https://registry.npmjs.org/esprima-fb/-/esprima-fb-15001.1001.0-dev-harmony-fb.tgz", + "integrity": "sha1-Q761fsJujPI3092LM+QlM1d/Jlk=" + }, + "source-map": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=" + } + } + }, + "redent": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", + "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", + "dev": true + }, + "reflect-metadata": { + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.10.tgz", + "integrity": "sha1-tPg3BEFqytiZiMmxVjXUfgO5NEo=" + }, + "regenerator-runtime": { + "version": "0.10.5", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz", + "integrity": "sha1-M2w+/BIgrc7dosn6tntaeVWjNlg=", + "dev": true + }, + "regex-cache": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.3.tgz", + "integrity": "sha1-mxpsNdTQ3871cRrmUejp09cRQUU=", + "dev": true + }, + "remove-trailing-separator": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz", + "integrity": "sha1-YV67lq9VlVLUv0BXyENtSGq2PMQ=", + "dev": true + }, + "repeat-element": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz", + "integrity": "sha1-7wiaF40Ug7quTZPrmLT55OEdmQo=", + "dev": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true + }, + "repeating": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", + "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", + "dev": true + }, + "request": { + "version": "2.81.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.81.0.tgz", + "integrity": "sha1-xpKJRqDgbF+Nb4qTM0af/aRimKA=", + "dev": true, + "dependencies": { + "qs": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz", + "integrity": "sha1-E+JtKK1rD/qpExLNO/cI7TUecjM=", + "dev": true + } + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "dev": true + }, + "require-main-filename": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", + "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=", + "dev": true + }, + "resolve": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.3.3.tgz", + "integrity": "sha1-ZVkHw0aahoDcLeOidaj91paR8OU=", + "dev": true + }, + "restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", + "dev": true + }, + "right-align": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz", + "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=", + "dev": true + }, + "rimraf": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.1.tgz", + "integrity": "sha1-wjOOxkPfeht/5cVPqG9XQopV8z0=", + "dev": true + }, + "ripemd160": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.1.tgz", + "integrity": "sha1-D0WEKVxTo2KK9+bXmsohzlfRxuc=", + "dev": true + }, + "rsvp": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-3.5.0.tgz", + "integrity": "sha1-pixXOkrk4d/QaX68YkLnnGgeqjQ=", + "dev": true + }, + "run-async": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz", + "integrity": "sha1-A3GrSuC91yDUFm19/aZP96RFpsA=", + "dev": true + }, + "rx": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/rx/-/rx-4.1.0.tgz", + "integrity": "sha1-pfE/957zt0D+MKqAP7CfmIBdR4I=", + "dev": true + }, + "rxjs": { + "version": "5.0.0-beta.12", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-5.0.0-beta.12.tgz", + "integrity": "sha1-zf3i2MRjnSCud5S/+P3fMtp60zc=" + }, + "safe-buffer": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.0.tgz", + "integrity": "sha512-aSLEDudu6OoRr/2rU609gRmnYboRLxgDG1z9o2Q0os7236FwvcqIOO8r8U5JUEwivZOhDaKlFO4SbPTJYyBEyQ==", + "dev": true + }, + "safe-json-parse": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/safe-json-parse/-/safe-json-parse-1.0.1.tgz", + "integrity": "sha1-PnZyPjjf3aE8mx0poeB//uSzC1c=", + "dev": true + }, + "sass-graph": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-2.2.4.tgz", + "integrity": "sha1-E/vWPNHK8JCLn9k0dq1DpR0eC0k=", + "dev": true + }, + "sax": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.2.tgz", + "integrity": "sha1-/YYxojvHgmvvXYcb24c3jJVkeCg=", + "dev": true + }, + "scss-tokenizer": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz", + "integrity": "sha1-jrBtualyMzOCTT9VMGQRSYR85dE=", + "dev": true + }, + "semver": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz", + "integrity": "sha1-myzl094C0XxgEq0yaqa00M9U+U8=", + "dev": true + }, + "serve-static": { + "version": "1.11.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.11.2.tgz", + "integrity": "sha1-LPmIm9RDWjIMw2iVyapXvWYuasc=", + "dev": true, + "dependencies": { + "ms": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz", + "integrity": "sha1-riXPJRKziFodldfwN4aNhDESR2U=", + "dev": true + }, + "send": { + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/send/-/send-0.14.2.tgz", + "integrity": "sha1-ObBDiz9RC+Xcb2Z6EfcWiTaM3u8=", + "dev": true + } + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "dev": true + }, + "set-immediate-shim": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz", + "integrity": "sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E=", + "dev": true + }, + "setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=", + "dev": true + }, + "setprototypeof": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.2.tgz", + "integrity": "sha1-gaVSFB7BBLiOic44MQOtXGZWTQg=", + "dev": true + }, + "sha.js": { + "version": "2.4.8", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.8.tgz", + "integrity": "sha1-NwaMLEdra69ALRSknGf1l5IfY08=", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "signal-exit": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", + "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", + "dev": true + }, + "slash": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", + "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=", + "dev": true + }, + "slice-ansi": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz", + "integrity": "sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU=", + "dev": true + }, + "sntp": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz", + "integrity": "sha1-ZUEYTMkK7qbG57NeJlkIJEPGYZg=", + "dev": true + }, + "source-map": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", + "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=" + }, + "source-map-support": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.3.3.tgz", + "integrity": "sha1-NJAJd9W6PwfHdX7nLnO7GptTdU8=", + "dependencies": { + "source-map": { + "version": "0.1.32", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.32.tgz", + "integrity": "sha1-yLbBZ3l7pHQKjqMyUhYv8IWRsmY=" + } + } + }, + "spdx-correct": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz", + "integrity": "sha1-SzBz2TP/UfORLwOsVRlJikFQ20A=", + "dev": true + }, + "spdx-expression-parse": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz", + "integrity": "sha1-m98vIOH0DtRH++JzJmGR/O1RYmw=", + "dev": true + }, + "spdx-license-ids": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz", + "integrity": "sha1-yd96NCRZSt5r0RkA1ZZpbcBrrFc=", + "dev": true + }, + "sprintf-js": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.1.tgz", + "integrity": "sha1-Nr54Mgr+WAH2zqPueLblqrlA6gw=", + "dev": true + }, + "sshpk": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.13.0.tgz", + "integrity": "sha1-/yo+T9BEl1Vf7Zezmg/YL6+zozw=", + "dev": true, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "dev": true + } + } + }, + "statuses": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz", + "integrity": "sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4=", + "dev": true + }, + "stdout-stream": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/stdout-stream/-/stdout-stream-1.4.0.tgz", + "integrity": "sha1-osfIWH5U2UJ+qe2zrD8s1SLfN4s=", + "dev": true, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "readable-stream": { + "version": "2.2.10", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.10.tgz", + "integrity": "sha512-HQEnnoV404e0EtwB9yNiuk2tJ+egeVC8Y9QBAxzDg8DBJt4BzRp+yQuIb/t3FIWkSTmIi+sgx7yVv/ZM0GNoqw==", + "dev": true + }, + "string_decoder": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.1.tgz", + "integrity": "sha1-YuIA8DmVWmgQ2N8KM//A8BNmLZg=", + "dev": true + } + } + }, + "stream-browserify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz", + "integrity": "sha1-ZiZu5fm9uZQKTkUUyvtDu3Hlyds=", + "dev": true, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "readable-stream": { + "version": "2.2.10", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.10.tgz", + "integrity": "sha512-HQEnnoV404e0EtwB9yNiuk2tJ+egeVC8Y9QBAxzDg8DBJt4BzRp+yQuIb/t3FIWkSTmIi+sgx7yVv/ZM0GNoqw==", + "dev": true + }, + "string_decoder": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.1.tgz", + "integrity": "sha1-YuIA8DmVWmgQ2N8KM//A8BNmLZg=", + "dev": true + } + } + }, + "stream-http": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.7.1.tgz", + "integrity": "sha1-VGpRdBrVprB+njGwsQRBqRffUoo=", + "dev": true, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "readable-stream": { + "version": "2.2.10", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.10.tgz", + "integrity": "sha512-HQEnnoV404e0EtwB9yNiuk2tJ+egeVC8Y9QBAxzDg8DBJt4BzRp+yQuIb/t3FIWkSTmIi+sgx7yVv/ZM0GNoqw==", + "dev": true + }, + "string_decoder": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.1.tgz", + "integrity": "sha1-YuIA8DmVWmgQ2N8KM//A8BNmLZg=", + "dev": true + } + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + }, + "string-range": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/string-range/-/string-range-1.2.2.tgz", + "integrity": "sha1-qJPtNH5yKZvIO++78qaSqNI51d0=", + "dev": true + }, + "string-template": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/string-template/-/string-template-0.2.1.tgz", + "integrity": "sha1-QpMuWYo1LQH8IuwzZ9nYTuxsmt0=", + "dev": true + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true + }, + "stringstream": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz", + "integrity": "sha1-TkhM1N5aC7vuGORjB3EKioFiGHg=", + "dev": true + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true + }, + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "dev": true + }, + "strip-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", + "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", + "dev": true + }, + "superagent": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/superagent/-/superagent-3.5.2.tgz", + "integrity": "sha1-M2GjlxVnUEw1EGOr6q4PqiPb8/g=", + "dev": true, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "readable-stream": { + "version": "2.2.10", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.10.tgz", + "integrity": "sha512-HQEnnoV404e0EtwB9yNiuk2tJ+egeVC8Y9QBAxzDg8DBJt4BzRp+yQuIb/t3FIWkSTmIi+sgx7yVv/ZM0GNoqw==", + "dev": true + }, + "string_decoder": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.1.tgz", + "integrity": "sha1-YuIA8DmVWmgQ2N8KM//A8BNmLZg=", + "dev": true + } + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "dev": true + }, + "symbol-observable": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.4.tgz", + "integrity": "sha1-Kb9hXUqnEhvdiYsi1LP5vE4qoD0=" + }, + "tapable": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-0.2.6.tgz", + "integrity": "sha1-IGvo4YiGC1FEJTdebxrom/sB/Y0=", + "dev": true + }, + "tar": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tar/-/tar-2.2.1.tgz", + "integrity": "sha1-jk0qJWwOIYXGsYrWlK7JaLg8sdE=", + "dev": true + }, + "tar-stream": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.5.4.tgz", + "integrity": "sha1-NlSc8E7RrumyowwBQyUiONr5QBY=", + "dev": true, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "readable-stream": { + "version": "2.2.10", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.10.tgz", + "integrity": "sha512-HQEnnoV404e0EtwB9yNiuk2tJ+egeVC8Y9QBAxzDg8DBJt4BzRp+yQuIb/t3FIWkSTmIi+sgx7yVv/ZM0GNoqw==", + "dev": true + }, + "string_decoder": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.1.tgz", + "integrity": "sha1-YuIA8DmVWmgQ2N8KM//A8BNmLZg=", + "dev": true + } + } + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" + }, + "through2": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", + "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=" + }, + "thunky": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-0.1.0.tgz", + "integrity": "sha1-vzAUaCTituZ7Dy16Ssi+smkIaE4=", + "dev": true + }, + "timers-browserify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.2.tgz", + "integrity": "sha1-q0iDz1l9zVCvIRNJoA+8pWrIa4Y=", + "dev": true + }, + "tiny-lr": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tiny-lr/-/tiny-lr-1.0.3.tgz", + "integrity": "sha1-OGcxFwzlISY6nTN/dp7o8R6I6wQ=", + "dev": true + }, + "tmp": { + "version": "0.0.31", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.31.tgz", + "integrity": "sha1-jzirlDjhcxXl29izZX6L+yd65Kc=", + "dev": true + }, + "to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=", + "dev": true + }, + "to-fast-properties": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz", + "integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=", + "dev": true + }, + "tough-cookie": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.2.tgz", + "integrity": "sha1-8IH3bkyFcg5sN6X6ztc3FQ2EByo=", + "dev": true + }, + "trim-newlines": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", + "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=", + "dev": true + }, + "trim-right": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", + "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=", + "dev": true + }, + "tsickle": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/tsickle/-/tsickle-0.1.7.tgz", + "integrity": "sha1-v+j0zc2vmkC4SnKaOEgML4JPGKs=" + }, + "tslint": { + "version": "3.15.1", + "resolved": "https://registry.npmjs.org/tslint/-/tslint-3.15.1.tgz", + "integrity": "sha1-2hZcqT2P3CwIa1EWXuG6y0jJjqU=", + "dev": true + }, + "tslint-eslint-rules": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/tslint-eslint-rules/-/tslint-eslint-rules-1.5.0.tgz", + "integrity": "sha1-iyRPsDuuDyGeJ4NX3cqv7oHBlhU=", + "dev": true + }, + "tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=", + "dev": true + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "dev": true + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "dev": true, + "optional": true + }, + "type-is": { + "version": "1.6.15", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.15.tgz", + "integrity": "sha1-yrEPtJCeRByChC6v4a1kbIGARBA=", + "dev": true + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", + "dev": true + }, + "typedarray-to-buffer": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-1.0.4.tgz", + "integrity": "sha1-m7i6DoQfs/TPH+fCRenz+opf6Zw=", + "dev": true + }, + "typescript": { + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-2.0.9.tgz", + "integrity": "sha1-tPX+zD9E1ccX87PnwzHlu7FHpT0=", + "dev": true + }, + "uglify-to-browserify": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz", + "integrity": "sha1-bgkk1r2mta/jSeOabWMoUKD4grc=", + "dev": true, + "optional": true + }, + "ultron": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz", + "integrity": "sha1-rOEWq1V80Zc4ak6I9GhTeMiy5Po=", + "dev": true + }, + "underscore.string": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/underscore.string/-/underscore.string-3.3.4.tgz", + "integrity": "sha1-LCo/n4PmR2L9xF5s6sZRQoZCE9s=", + "dev": true + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", + "dev": true + }, + "unreachable-branch-transform": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/unreachable-branch-transform/-/unreachable-branch-transform-0.3.0.tgz", + "integrity": "sha1-2ZzExudG0mSSiEW2EdtUsPNHTKo=" + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "dev": true, + "dependencies": { + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", + "dev": true + } + } + }, + "user-home": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/user-home/-/user-home-1.1.1.tgz", + "integrity": "sha1-K1viOjK2Onyd640PKNSFcko98ZA=", + "dev": true + }, + "util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "dev": true, + "dependencies": { + "inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=", + "dev": true + } + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "utils-merge": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.0.tgz", + "integrity": "sha1-ApT7kiu5N1FTVBxPcJYjHyh8ivg=", + "dev": true + }, + "uuid": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.0.1.tgz", + "integrity": "sha1-ZUS7ot/ajBzxfmKaOjBeK7H+5sE=" + }, + "v8flags": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-2.1.1.tgz", + "integrity": "sha1-qrGh+jDUX4jdMhFIh1rALAtV5bQ=", + "dev": true + }, + "validate-npm-package-license": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz", + "integrity": "sha1-KAS6vnEq0zeUWaz74kdGqywwP7w=", + "dev": true + }, + "vary": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.1.tgz", + "integrity": "sha1-Z1Neu2lMHVIldFeYRmUyP1h+jTc=", + "dev": true + }, + "verror": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.3.6.tgz", + "integrity": "sha1-z/XfEpRtKX0rqu+qJoniW+AcAFw=", + "dev": true + }, + "vlq": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/vlq/-/vlq-0.2.2.tgz", + "integrity": "sha1-4xbVJXtAuGu0PLjV/qXX9U1rDKE=", + "dev": true + }, + "vm-browserify": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz", + "integrity": "sha1-XX6kW7755Kb/ZflUOOCofDV9WnM=", + "dev": true + }, + "walkdir": { + "version": "0.0.11", + "resolved": "https://registry.npmjs.org/walkdir/-/walkdir-0.0.11.tgz", + "integrity": "sha1-oW0CXrkxvQO1LzCMrtD0D86+lTI=", + "dev": true + }, + "watchpack": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.3.1.tgz", + "integrity": "sha1-fYaTkHsozmAT5/NhCqKhrPB9rYc=", + "dev": true, + "dependencies": { + "async": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/async/-/async-2.4.1.tgz", + "integrity": "sha1-YqVrJ5yYoR0JhwlqAcw+6463u9c=", + "dev": true + } + } + }, + "websocket-driver": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.6.5.tgz", + "integrity": "sha1-XLJVbOuF9Dc8bYI4qmkchFThOjY=", + "dev": true + }, + "websocket-extensions": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.1.tgz", + "integrity": "sha1-domUmcGEtu91Q3fC27DNbLVdKec=", + "dev": true + }, + "which": { + "version": "1.2.14", + "resolved": "https://registry.npmjs.org/which/-/which-1.2.14.tgz", + "integrity": "sha1-mofEN48D6CfOyvGs31bHNsAcFOU=", + "dev": true + }, + "which-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", + "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=", + "dev": true + }, + "wide-align": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.2.tgz", + "integrity": "sha512-ijDLlyQ7s6x1JgCLur53osjm/UXUYD9+0PbYKrBsYisYXzCxN+HC3mYDNy/dWdmf3AwqwU3CXwDCvsNgGK1S0w==", + "dev": true + }, + "win-release": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/win-release/-/win-release-1.1.1.tgz", + "integrity": "sha1-X6VeAr58qTTt/BJmVjLoSbcuUgk=", + "dev": true + }, + "window-size": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz", + "integrity": "sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0=", + "dev": true + }, + "wordwrap": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", + "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=", + "dev": true + }, + "wrap-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", + "dev": true + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "ws": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-1.1.1.tgz", + "integrity": "sha1-CC3bbGQehdS7RR8D1S8G6r2x8Bg=", + "dev": true + }, + "xml2js": { + "version": "0.4.17", + "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.17.tgz", + "integrity": "sha1-F76T6q4/O3eTWceVtBlwWogX6Gg=", + "dev": true + }, + "xmlbuilder": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-4.2.1.tgz", + "integrity": "sha1-qlijBBoGb5DqoWwvU4n/GfP0YaU=", + "dev": true + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=" + }, + "y18n": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz", + "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=", + "dev": true + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", + "dev": true + }, + "yargs": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.0.tgz", + "integrity": "sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg=", + "dev": true, + "dependencies": { + "camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", + "dev": true + } + } + }, + "yargs-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0.tgz", + "integrity": "sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo=", + "dev": true, + "dependencies": { + "camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", + "dev": true + } + } + }, + "zip-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-1.1.1.tgz", + "integrity": "sha1-Uha0i7tNJlH2TVxubwnrSnOZ1Vc=", + "dev": true, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "readable-stream": { + "version": "2.2.10", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.10.tgz", + "integrity": "sha512-HQEnnoV404e0EtwB9yNiuk2tJ+egeVC8Y9QBAxzDg8DBJt4BzRp+yQuIb/t3FIWkSTmIi+sgx7yVv/ZM0GNoqw==", + "dev": true + }, + "string_decoder": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.1.tgz", + "integrity": "sha1-YuIA8DmVWmgQ2N8KM//A8BNmLZg=", + "dev": true + } + } + }, + "zone.js": { + "version": "0.6.26", + "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.6.26.tgz", + "integrity": "sha1-BnwTuLgCI6ibYuncgmgPCXYsRjY=" + } + } +} diff --git a/client app/package.json b/client app/package.json new file mode 100644 index 0000000..1d363b4 --- /dev/null +++ b/client app/package.json @@ -0,0 +1,76 @@ +{ + "name": "Getraenkeautomat", + "private": true, + "scripts": { + "clean": "ionic-app-scripts clean", + "build": "ionic-app-scripts build", + "ionic:build": "ionic-app-scripts build", + "ionic:serve": "ionic-app-scripts serve" + }, + "dependencies": { + "@angular/common": "2.2.1", + "@angular/compiler": "2.2.1", + "@angular/compiler-cli": "2.2.1", + "@angular/core": "2.2.1", + "@angular/forms": "2.2.1", + "@angular/http": "2.2.1", + "@angular/platform-browser": "2.2.1", + "@angular/platform-browser-dynamic": "2.2.1", + "@angular/platform-server": "2.2.1", + "@ionic/storage": "1.1.7", + "cordova-android": "^6.1.2", + "cordova-ios": "^4.4.0", + "cordova-plugin-console": "^1.0.5", + "cordova-plugin-device": "^1.1.4", + "cordova-plugin-splashscreen": "^4.0.3", + "cordova-plugin-statusbar": "^2.2.1", + "cordova-plugin-whitelist": "^1.3.1", + "ionic-angular": "2.0.0-rc.4", + "ionic-native": "2.2.11", + "ionic-plugin-keyboard": "^2.2.1", + "ionicons": "3.0.0", + "rxjs": "5.0.0-beta.12", + "uuid": "^3.0.1", + "zone.js": "0.6.26" + }, + "devDependencies": { + "@ionic/app-scripts": "^1.3.7", + "@ionic/cli-plugin-cordova": "1.3.0", + "@ionic/cli-plugin-ionic-angular": "1.3.0", + "typescript": "2.0.9" + }, + "cordovaPlugins": [ + "cordova-plugin-whitelist", + "cordova-plugin-console", + "cordova-plugin-statusbar", + "cordova-plugin-device", + "cordova-plugin-splashscreen", + "ionic-plugin-keyboard", + "cordova-plugin-bluetooth-serial", + "cordova-plugin-dialogs", + "cordova-plugin-x-toast" + ], + "cordovaPlatforms": [ + "ios", + { + "platform": "ios", + "version": "", + "locator": "ios" + } + ], + "description": "client: An Ionic project", + "cordova": { + "plugins": { + "cordova-plugin-console": {}, + "cordova-plugin-device": {}, + "cordova-plugin-splashscreen": {}, + "cordova-plugin-statusbar": {}, + "cordova-plugin-whitelist": {}, + "ionic-plugin-keyboard": {} + }, + "platforms": [ + "android", + "ios" + ] + } +} \ No newline at end of file diff --git a/client app/resources/android/icon/drawable-hdpi-icon.png b/client app/resources/android/icon/drawable-hdpi-icon.png new file mode 100644 index 0000000..0827a61 Binary files /dev/null and b/client app/resources/android/icon/drawable-hdpi-icon.png differ diff --git a/client app/resources/android/icon/drawable-ldpi-icon.png b/client app/resources/android/icon/drawable-ldpi-icon.png new file mode 100644 index 0000000..25da366 Binary files /dev/null and b/client app/resources/android/icon/drawable-ldpi-icon.png differ diff --git a/client app/resources/android/icon/drawable-mdpi-icon.png b/client app/resources/android/icon/drawable-mdpi-icon.png new file mode 100644 index 0000000..1249bad Binary files /dev/null and b/client app/resources/android/icon/drawable-mdpi-icon.png differ diff --git a/client app/resources/android/icon/drawable-xhdpi-icon.png b/client app/resources/android/icon/drawable-xhdpi-icon.png new file mode 100644 index 0000000..4e3efc6 Binary files /dev/null and b/client app/resources/android/icon/drawable-xhdpi-icon.png differ diff --git a/client app/resources/android/icon/drawable-xxhdpi-icon.png b/client app/resources/android/icon/drawable-xxhdpi-icon.png new file mode 100644 index 0000000..f7debe1 Binary files /dev/null and b/client app/resources/android/icon/drawable-xxhdpi-icon.png differ diff --git a/client app/resources/android/icon/drawable-xxxhdpi-icon.png b/client app/resources/android/icon/drawable-xxxhdpi-icon.png new file mode 100644 index 0000000..c68aa5f Binary files /dev/null and b/client app/resources/android/icon/drawable-xxxhdpi-icon.png differ diff --git a/client app/resources/android/splash/drawable-port-hdpi-screen.png b/client app/resources/android/splash/drawable-port-hdpi-screen.png new file mode 100644 index 0000000..e5dd52a Binary files /dev/null and b/client app/resources/android/splash/drawable-port-hdpi-screen.png differ diff --git a/client app/resources/android/splash/drawable-port-ldpi-screen.png b/client app/resources/android/splash/drawable-port-ldpi-screen.png new file mode 100644 index 0000000..22be23b Binary files /dev/null and b/client app/resources/android/splash/drawable-port-ldpi-screen.png differ diff --git a/client app/resources/android/splash/drawable-port-mdpi-screen.png b/client app/resources/android/splash/drawable-port-mdpi-screen.png new file mode 100644 index 0000000..d49893d Binary files /dev/null and b/client app/resources/android/splash/drawable-port-mdpi-screen.png differ diff --git a/client app/resources/android/splash/drawable-port-xhdpi-screen.png b/client app/resources/android/splash/drawable-port-xhdpi-screen.png new file mode 100644 index 0000000..0365b05 Binary files /dev/null and b/client app/resources/android/splash/drawable-port-xhdpi-screen.png differ diff --git a/client app/resources/android/splash/drawable-port-xxhdpi-screen.png b/client app/resources/android/splash/drawable-port-xxhdpi-screen.png new file mode 100644 index 0000000..6b5cee1 Binary files /dev/null and b/client app/resources/android/splash/drawable-port-xxhdpi-screen.png differ diff --git a/client app/resources/android/splash/drawable-port-xxxhdpi-screen.png b/client app/resources/android/splash/drawable-port-xxxhdpi-screen.png new file mode 100644 index 0000000..385d041 Binary files /dev/null and b/client app/resources/android/splash/drawable-port-xxxhdpi-screen.png differ diff --git a/client app/resources/icon.png b/client app/resources/icon.png new file mode 100644 index 0000000..770ef1b Binary files /dev/null and b/client app/resources/icon.png differ diff --git a/client app/resources/ios/icon/icon-40.png b/client app/resources/ios/icon/icon-40.png new file mode 100644 index 0000000..a97a4e2 Binary files /dev/null and b/client app/resources/ios/icon/icon-40.png differ diff --git a/client app/resources/ios/icon/icon-40@2x.png b/client app/resources/ios/icon/icon-40@2x.png new file mode 100644 index 0000000..b933a93 Binary files /dev/null and b/client app/resources/ios/icon/icon-40@2x.png differ diff --git a/client app/resources/ios/icon/icon-40@3x.png b/client app/resources/ios/icon/icon-40@3x.png new file mode 100644 index 0000000..319b4ab Binary files /dev/null and b/client app/resources/ios/icon/icon-40@3x.png differ diff --git a/client app/resources/ios/icon/icon-50.png b/client app/resources/ios/icon/icon-50.png new file mode 100644 index 0000000..9a43da3 Binary files /dev/null and b/client app/resources/ios/icon/icon-50.png differ diff --git a/client app/resources/ios/icon/icon-50@2x.png b/client app/resources/ios/icon/icon-50@2x.png new file mode 100644 index 0000000..3d0ea86 Binary files /dev/null and b/client app/resources/ios/icon/icon-50@2x.png differ diff --git a/client app/resources/ios/icon/icon-60.png b/client app/resources/ios/icon/icon-60.png new file mode 100644 index 0000000..0b1f814 Binary files /dev/null and b/client app/resources/ios/icon/icon-60.png differ diff --git a/client app/resources/ios/icon/icon-60@2x.png b/client app/resources/ios/icon/icon-60@2x.png new file mode 100644 index 0000000..d871e53 Binary files /dev/null and b/client app/resources/ios/icon/icon-60@2x.png differ diff --git a/client app/resources/ios/icon/icon-60@3x.png b/client app/resources/ios/icon/icon-60@3x.png new file mode 100644 index 0000000..9b524ce Binary files /dev/null and b/client app/resources/ios/icon/icon-60@3x.png differ diff --git a/client app/resources/ios/icon/icon-72.png b/client app/resources/ios/icon/icon-72.png new file mode 100644 index 0000000..e04f4b8 Binary files /dev/null and b/client app/resources/ios/icon/icon-72.png differ diff --git a/client app/resources/ios/icon/icon-72@2x.png b/client app/resources/ios/icon/icon-72@2x.png new file mode 100644 index 0000000..92dfb66 Binary files /dev/null and b/client app/resources/ios/icon/icon-72@2x.png differ diff --git a/client app/resources/ios/icon/icon-76.png b/client app/resources/ios/icon/icon-76.png new file mode 100644 index 0000000..c525861 Binary files /dev/null and b/client app/resources/ios/icon/icon-76.png differ diff --git a/client app/resources/ios/icon/icon-76@2x.png b/client app/resources/ios/icon/icon-76@2x.png new file mode 100644 index 0000000..35c8d94 Binary files /dev/null and b/client app/resources/ios/icon/icon-76@2x.png differ diff --git a/client app/resources/ios/icon/icon-83.5@2x.png b/client app/resources/ios/icon/icon-83.5@2x.png new file mode 100644 index 0000000..6155e4b Binary files /dev/null and b/client app/resources/ios/icon/icon-83.5@2x.png differ diff --git a/client app/resources/ios/icon/icon-small.png b/client app/resources/ios/icon/icon-small.png new file mode 100644 index 0000000..0bfae81 Binary files /dev/null and b/client app/resources/ios/icon/icon-small.png differ diff --git a/client app/resources/ios/icon/icon-small@2x.png b/client app/resources/ios/icon/icon-small@2x.png new file mode 100644 index 0000000..64721d1 Binary files /dev/null and b/client app/resources/ios/icon/icon-small@2x.png differ diff --git a/client app/resources/ios/icon/icon-small@3x.png b/client app/resources/ios/icon/icon-small@3x.png new file mode 100644 index 0000000..8c6c79c Binary files /dev/null and b/client app/resources/ios/icon/icon-small@3x.png differ diff --git a/client app/resources/ios/icon/icon.png b/client app/resources/ios/icon/icon.png new file mode 100644 index 0000000..54a8391 Binary files /dev/null and b/client app/resources/ios/icon/icon.png differ diff --git a/client app/resources/ios/icon/icon@2x.png b/client app/resources/ios/icon/icon@2x.png new file mode 100644 index 0000000..d8956ae Binary files /dev/null and b/client app/resources/ios/icon/icon@2x.png differ diff --git a/client app/resources/ios/splash/Default-568h@2x~iphone.png b/client app/resources/ios/splash/Default-568h@2x~iphone.png new file mode 100644 index 0000000..cf87e51 Binary files /dev/null and b/client app/resources/ios/splash/Default-568h@2x~iphone.png differ diff --git a/client app/resources/ios/splash/Default-667h.png b/client app/resources/ios/splash/Default-667h.png new file mode 100644 index 0000000..2cd37ea Binary files /dev/null and b/client app/resources/ios/splash/Default-667h.png differ diff --git a/client app/resources/ios/splash/Default-736h.png b/client app/resources/ios/splash/Default-736h.png new file mode 100644 index 0000000..35284fe Binary files /dev/null and b/client app/resources/ios/splash/Default-736h.png differ diff --git a/client app/resources/ios/splash/Default-Portrait@2x~ipad.png b/client app/resources/ios/splash/Default-Portrait@2x~ipad.png new file mode 100644 index 0000000..e923606 Binary files /dev/null and b/client app/resources/ios/splash/Default-Portrait@2x~ipad.png differ diff --git a/client app/resources/ios/splash/Default-Portrait@~ipadpro.png b/client app/resources/ios/splash/Default-Portrait@~ipadpro.png new file mode 100644 index 0000000..24d595f Binary files /dev/null and b/client app/resources/ios/splash/Default-Portrait@~ipadpro.png differ diff --git a/client app/resources/ios/splash/Default-Portrait~ipad.png b/client app/resources/ios/splash/Default-Portrait~ipad.png new file mode 100644 index 0000000..657909c Binary files /dev/null and b/client app/resources/ios/splash/Default-Portrait~ipad.png differ diff --git a/client app/resources/ios/splash/Default@2x~iphone.png b/client app/resources/ios/splash/Default@2x~iphone.png new file mode 100644 index 0000000..580ba19 Binary files /dev/null and b/client app/resources/ios/splash/Default@2x~iphone.png differ diff --git a/client app/resources/ios/splash/Default~iphone.png b/client app/resources/ios/splash/Default~iphone.png new file mode 100644 index 0000000..6d4636b Binary files /dev/null and b/client app/resources/ios/splash/Default~iphone.png differ diff --git a/client app/resources/splash.png b/client app/resources/splash.png new file mode 100644 index 0000000..80ceb6e Binary files /dev/null and b/client app/resources/splash.png differ diff --git a/client app/splash.psd b/client app/splash.psd new file mode 100644 index 0000000..3fe902c Binary files /dev/null and b/client app/splash.psd differ diff --git a/client app/src/app/app.component.ts b/client app/src/app/app.component.ts new file mode 100644 index 0000000..64b92b1 --- /dev/null +++ b/client app/src/app/app.component.ts @@ -0,0 +1,117 @@ +import { Component } from '@angular/core'; +import { Events, Platform } from 'ionic-angular'; +import { StatusBar, Dialogs, Toast, Splashscreen, BluetoothSerial } from 'ionic-native'; +import { RecipesData } from '../providers/recipes-data'; +import { RecipesPage } from '../pages/recipes/recipes'; +import { Barbot } from '../providers/barbot'; +import { BARBOT } from './barbot-config'; + +@Component({ + templateUrl: 'app.html' +}) +export class MyApp { + rootPage; + + private connection: any; + + constructor(private events: Events, + platform: Platform, + barbot: Barbot, + public recipesData: RecipesData + ) { + platform.ready().then( () => { + return this.recipesData.init(); + }) + .then( () => { + + StatusBar.styleDefault(); + Splashscreen.hide(); + this.listenToEvents(); + this.connect(); + this.rootPage = RecipesPage; + + }); + } + + listenToEvents() { + this.events.subscribe('barbot:connect', () => { + this.connect(); + }); + + this.events.subscribe('barbot:disconnect', () => { + this.disconnect(); + }); + } + + listenToBarbotEvents() { + BluetoothSerial.subscribe('\n').subscribe(data => { + this.parseInput(data); + }); + } + + parseInput(data) { + let input = data.trim(); + let command = input.substring(0, 1); + + switch(command) { + case 'X': + let ingredient = input.substring(1); + this.events.publish('barbot:move', ingredient); + break; + case 'H': + this.events.publish('barbot:home'); + break; + } + } + + connect() { + // Ask user for permission to turn on Bluetooth + BluetoothSerial.enable().then( + status => { + this.events.publish('barbot:connecting'); + Toast.show('Verbinde zum Getränkeautomaten..', '20000', 'bottom').subscribe(toast => {}); + console.log('Bluetooth is enabled. Connecting to Barbot.'); + // Connect to Barbot + this.connection = BluetoothSerial.connect(BARBOT.MAC_ADDRESS).subscribe( + status => { + this.listenToBarbotEvents(); + this.events.publish('barbot:connected'); + Toast.hide().then( + success => { + Toast.show('Verbindung zum Getränkeautomat erfolgreich!', '4000', 'bottom').subscribe(toast => {}); + } + ); + }, + reason => { + this.events.publish('barbot:disconnected'); + if(reason === 'Device connection was lost') { + Toast.show('Der Getränkeautomat wurde getrennt!', '4000', 'bottom').subscribe(toast => {}); + return; + } + Toast.hide().then(status => {}); + Dialogs.confirm('Verbindung zum Getränkeautomaten fehlgeschlagen! Erneut versuchen?', 'Unable to connect', ['JA', 'Nein']).then( + selection => { + if(selection === 1) { + this.connect(); + } + } + ); + console.log('Unable to connect to Barbot: ' + reason); + } + ); + }, + reason => { + this.events.publish('barbot:disconnected'); + if(reason === 'cordova_not_available') return; + console.log('Bluetooth is not enabled. Ask user for permission again.'); + this.connect(); + } + ); + } + + disconnect() { + this.connection.unsubscribe(); + this.events.publish('barbot:disconnected'); + } + +} diff --git a/client app/src/app/app.html b/client app/src/app/app.html new file mode 100644 index 0000000..7b88c96 --- /dev/null +++ b/client app/src/app/app.html @@ -0,0 +1 @@ + diff --git a/client app/src/app/app.module.ts b/client app/src/app/app.module.ts new file mode 100644 index 0000000..497e73c --- /dev/null +++ b/client app/src/app/app.module.ts @@ -0,0 +1,46 @@ +import { NgModule, ErrorHandler } from '@angular/core'; +import { IonicApp, IonicModule, IonicErrorHandler } from 'ionic-angular'; + +import { MyApp } from './app.component'; +import { RecipesPage } from '../pages/recipes/recipes'; +import { SettingsPage } from '../pages/settings/settings'; +import { SettingsIngredientsPage } from '../pages/settings-ingredients/settings-ingredients'; +import { SettingsRecipesPage } from '../pages/settings-recipes/settings-recipes'; +import { SettingsRecipePage } from '../pages/settings-recipe/settings-recipe'; +import { RecipesFilterPage } from '../pages/recipes-filter/recipes-filter'; +import { SettingsIngredientPage } from '../pages/settings-ingredient/settings-ingredient'; +import { RecipesData } from '../providers/recipes-data'; +import { Barbot } from '../providers/barbot'; + +@NgModule({ + declarations: [ + MyApp, + RecipesPage, + RecipesFilterPage, + SettingsPage, + SettingsIngredientsPage, + SettingsRecipesPage, + SettingsRecipePage, + SettingsIngredientPage + ], + imports: [ + IonicModule.forRoot(MyApp) + ], + bootstrap: [IonicApp], + entryComponents: [ + MyApp, + RecipesPage, + RecipesFilterPage, + SettingsPage, + SettingsIngredientsPage, + SettingsRecipesPage, + SettingsRecipePage, + SettingsIngredientPage + ], + providers: [ + {provide: ErrorHandler, useClass: IonicErrorHandler}, + RecipesData, + Barbot + ] +}) +export class AppModule {} diff --git a/client app/src/app/app.scss b/client app/src/app/app.scss new file mode 100644 index 0000000..a967d6f --- /dev/null +++ b/client app/src/app/app.scss @@ -0,0 +1,16 @@ +// http://ionicframework.com/docs/v2/theming/ + + +// App Global Sass +// -------------------------------------------------- +// Put style rules here that you want to apply globally. These +// styles are for the entire app and not just one component. +// Additionally, this file can be also used as an entry point +// to import other Sass files to be included in the output CSS. +// +// Shared Sass variables, which can be used to adjust Ionic's +// default Sass variables, belong in "theme/variables.scss". +// +// To declare rules for a specific mode, create a child rule +// for the .md, .ios, or .wp mode classes. The mode class is +// automatically applied to the element in the app. diff --git a/client app/src/app/barbot-config.ts b/client app/src/app/barbot-config.ts new file mode 100644 index 0000000..aa74255 --- /dev/null +++ b/client app/src/app/barbot-config.ts @@ -0,0 +1,3 @@ +export let BARBOT = { + MAC_ADDRESS: '20:15:12:18:65:92' +}; diff --git a/client app/src/app/main.ts b/client app/src/app/main.ts new file mode 100644 index 0000000..6af7a5b --- /dev/null +++ b/client app/src/app/main.ts @@ -0,0 +1,5 @@ +import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; + +import { AppModule } from './app.module'; + +platformBrowserDynamic().bootstrapModule(AppModule); diff --git a/client app/src/assets/data/ingredients.json b/client app/src/assets/data/ingredients.json new file mode 100644 index 0000000..4ae1c35 --- /dev/null +++ b/client app/src/assets/data/ingredients.json @@ -0,0 +1,74 @@ +[ + { + "id": 1, + "name":"Vodka", + "coordinate":"-4995", + "hold":"2500", + "wait":"3000", + "disabled": false + }, + { + "id": 2, + "name":"Orangen Saft", + "coordinate":"-2510", + "hold":"2400", + "wait":"2500", + "disabled": false + }, + { + "id": 3, + "name":"Weisser Rum", + "coordinate":"-4010", + "hold":"2500", + "wait":"2400", + "disabled": false + }, + { + "id": 4, + "name":"Coca-Cola", + "coordinate":"-1000", + "hold":"2500", + "wait":"2800", + "disabled": false + }, + { + "id": 5, + "name":"Pfirsich Likör", + "coordinate":"-3500", + "hold":"2500", + "wait":"2400", + "disabled": false + }, + { + "id": 6, + "name":"Cranberry Saft", + "coordinate":"-1990", + "hold":"2300", + "wait":"2300", + "disabled": false + }, + { + "id": 7, + "name":"Whiskey", + "coordinate":"-4495", + "hold":"2400", + "wait":"2400", + "disabled": false + }, + { + "id": 8, + "name":"Grapefruit Saft", + "coordinate":"-1490", + "hold":"2600", + "wait":"2500", + "disabled": false + }, + { + "id": 9, + "name":"Melonen Likör", + "coordinate":"-2995", + "hold":"2500", + "wait":"2400", + "disabled": false + } +] diff --git a/client app/src/assets/data/recipes.json b/client app/src/assets/data/recipes.json new file mode 100644 index 0000000..b843aff --- /dev/null +++ b/client app/src/assets/data/recipes.json @@ -0,0 +1,275 @@ +[ + { + "id": 1, + "name":"Screwdriver", + "image":"screw_driver_small.png", + "description":"", + "ingredients":[ + { + "id": 1, + "amount": 40 + }, + { + "id": 2, + "amount": 100 + } + ] + }, + { + "id": 2, + "name":"Cuba Libre", + "image":"cuba_libre_small.png", + "description":"", + "ingredients":[ + { + "id": 3, + "amount": 40 + }, + { + "id": 4, + "amount": 120 + } + ] + }, + { + "id": 3, + "name":"Sex on the Beach", + "image":"sex_on_the_beach_small.png", + "description":"", + "ingredients":[ + { + "id": 1, + "amount": 40 + }, + { + "id": 5, + "amount": 20 + }, + { + "id": 2, + "amount": 40 + }, + { + "id": 6, + "amount": 40 + } + ] + }, + { + "id": 4, + "name":"Whiskey Cola", + "image":"whiskey_cola_small.png", + "description":"", + "ingredients":[ + { + "id": 7, + "name": "Whiskey", + "amount": 40 + }, + { + "id": 4, + "amount": 120 + } + ] + }, + { + "id": 5, + "name":"Cape Codder", + "image":"cape_codder_small.png", + "description":"", + "ingredients":[ + { + "id": 1, + "amount": 40 + }, + { + "id": 6, + "amount": 120 + } + ] + }, + { + "id": 6, + "name":"Woo Woo", + "image":"woo_woo_small.png", + "description":"", + "ingredients":[ + { + "id": 1, + "amount": 40 + }, + { + "id": 5, + "amount": 20 + }, + { + "id": 6, + "amount": 80 + } + ] + }, + { + "id": 7, + "name":"Wild Wild West", + "image":"wild_wild_west_small.png", + "description":"", + "ingredients":[ + { + "id": 7, + "amount": 40 + }, + { + "id": 5, + "amount": 20 + }, + { + "id": 6, + "amount": 100 + } + ] + }, + { + "id": 8, + "name":"Vodka Coke", + "image":"vodka_coke_small.png", + "description":"", + "ingredients":[ + { + "id": 1, + "amount": 40 + }, + { + "id": 4, + "amount": 120 + } + ] + }, + { + "id": 9, + "name":"Cuban Screw", + "image":"cuban_screw_small.png", + "description":"", + "ingredients":[ + { + "id": 3, + "amount": 40 + }, + { + "id": 2, + "amount": 120 + } + ] + }, + { + "id": 10, + "name":"Sea Breeze", + "image":"sea_breeze_small.png", + "description":"", + "ingredients":[ + { + "id": 1, + "amount": 40 + }, + { + "id": 6, + "amount": 100 + }, + { + "id": 8, + "amount": 20 + } + ] + }, + { + "id": 11, + "name":"Greyhound", + "image":"greyhound_small.png", + "description":"", + "ingredients":[ + { + "id": 1, + "amount": 40 + }, + { + "id": 8, + "amount": 120 + } + ] + }, + { + "id": 12, + "name":"Jolly Rancher", + "image":"jolly_rancher_small.png", + "description":"", + "ingredients":[ + { + "id": 1, + "amount": 40 + }, + { + "id": 9, + "amount": 20 + }, + { + "id": 6, + "amount": 100 + } + ] + }, + { + "id": 13, + "name":"Melon Ball", + "image":"melon_ball_small.png", + "description":"", + "ingredients":[ + { + "id": 1, + "amount": 40 + }, + { + "id": 9, + "amount": 20 + }, + { + "id": 2, + "amount": 100 + } + ] + }, + { + "id": 14, + "name":"Fuzzy Navel", + "image":"fuzzy_navel_small.png", + "description":"", + "ingredients":[ + { + "id": 5, + "amount": 40 + }, + { + "id": 2, + "amount": 100 + } + ] + }, + { + "id": 15, + "name":"Hairy Navel", + "image":"fuzzy_navel_small.png", + "description":"", + "ingredients":[ + { + "id": 5, + "amount": 40 + }, + { + "id": 1, + "amount": 20 + }, + { + "id": 2, + "amount": 100 + } + ] + } +] diff --git a/client app/src/assets/icon/favicon.ico b/client app/src/assets/icon/favicon.ico new file mode 100644 index 0000000..1c0e9ab Binary files /dev/null and b/client app/src/assets/icon/favicon.ico differ diff --git a/client app/src/assets/images/cocktails/cape_codder.png b/client app/src/assets/images/cocktails/cape_codder.png new file mode 100644 index 0000000..3f8a393 Binary files /dev/null and b/client app/src/assets/images/cocktails/cape_codder.png differ diff --git a/client app/src/assets/images/cocktails/cape_codder_small.png b/client app/src/assets/images/cocktails/cape_codder_small.png new file mode 100644 index 0000000..f0b09e1 Binary files /dev/null and b/client app/src/assets/images/cocktails/cape_codder_small.png differ diff --git a/client app/src/assets/images/cocktails/cuba_libre.png b/client app/src/assets/images/cocktails/cuba_libre.png new file mode 100644 index 0000000..63ec62a Binary files /dev/null and b/client app/src/assets/images/cocktails/cuba_libre.png differ diff --git a/client app/src/assets/images/cocktails/cuba_libre_small.png b/client app/src/assets/images/cocktails/cuba_libre_small.png new file mode 100644 index 0000000..aeb2236 Binary files /dev/null and b/client app/src/assets/images/cocktails/cuba_libre_small.png differ diff --git a/client app/src/assets/images/cocktails/cuban_screw.png b/client app/src/assets/images/cocktails/cuban_screw.png new file mode 100644 index 0000000..2eece66 Binary files /dev/null and b/client app/src/assets/images/cocktails/cuban_screw.png differ diff --git a/client app/src/assets/images/cocktails/cuban_screw_small.png b/client app/src/assets/images/cocktails/cuban_screw_small.png new file mode 100644 index 0000000..7c23861 Binary files /dev/null and b/client app/src/assets/images/cocktails/cuban_screw_small.png differ diff --git a/client app/src/assets/images/cocktails/feeling_lucky_small.png b/client app/src/assets/images/cocktails/feeling_lucky_small.png new file mode 100644 index 0000000..a6d5063 Binary files /dev/null and b/client app/src/assets/images/cocktails/feeling_lucky_small.png differ diff --git a/client app/src/assets/images/cocktails/fuzzy_navel.png b/client app/src/assets/images/cocktails/fuzzy_navel.png new file mode 100644 index 0000000..2245a9f Binary files /dev/null and b/client app/src/assets/images/cocktails/fuzzy_navel.png differ diff --git a/client app/src/assets/images/cocktails/fuzzy_navel_small.png b/client app/src/assets/images/cocktails/fuzzy_navel_small.png new file mode 100644 index 0000000..9ae1598 Binary files /dev/null and b/client app/src/assets/images/cocktails/fuzzy_navel_small.png differ diff --git a/client app/src/assets/images/cocktails/greyhound.png b/client app/src/assets/images/cocktails/greyhound.png new file mode 100644 index 0000000..cec40e7 Binary files /dev/null and b/client app/src/assets/images/cocktails/greyhound.png differ diff --git a/client app/src/assets/images/cocktails/greyhound_small.png b/client app/src/assets/images/cocktails/greyhound_small.png new file mode 100644 index 0000000..9f78553 Binary files /dev/null and b/client app/src/assets/images/cocktails/greyhound_small.png differ diff --git a/client app/src/assets/images/cocktails/jolly_rancher.png b/client app/src/assets/images/cocktails/jolly_rancher.png new file mode 100644 index 0000000..d81d38f Binary files /dev/null and b/client app/src/assets/images/cocktails/jolly_rancher.png differ diff --git a/client app/src/assets/images/cocktails/jolly_rancher_small.png b/client app/src/assets/images/cocktails/jolly_rancher_small.png new file mode 100644 index 0000000..8aeaf06 Binary files /dev/null and b/client app/src/assets/images/cocktails/jolly_rancher_small.png differ diff --git a/client app/src/assets/images/cocktails/malibu_sunrise.png b/client app/src/assets/images/cocktails/malibu_sunrise.png new file mode 100644 index 0000000..faedecd Binary files /dev/null and b/client app/src/assets/images/cocktails/malibu_sunrise.png differ diff --git a/client app/src/assets/images/cocktails/malibu_sunrise_small.png b/client app/src/assets/images/cocktails/malibu_sunrise_small.png new file mode 100644 index 0000000..696bd4d Binary files /dev/null and b/client app/src/assets/images/cocktails/malibu_sunrise_small.png differ diff --git a/client app/src/assets/images/cocktails/melon_ball.png b/client app/src/assets/images/cocktails/melon_ball.png new file mode 100644 index 0000000..fafb933 Binary files /dev/null and b/client app/src/assets/images/cocktails/melon_ball.png differ diff --git a/client app/src/assets/images/cocktails/melon_ball_small.png b/client app/src/assets/images/cocktails/melon_ball_small.png new file mode 100644 index 0000000..2732d88 Binary files /dev/null and b/client app/src/assets/images/cocktails/melon_ball_small.png differ diff --git a/client app/src/assets/images/cocktails/screw_driver.png b/client app/src/assets/images/cocktails/screw_driver.png new file mode 100644 index 0000000..0fec587 Binary files /dev/null and b/client app/src/assets/images/cocktails/screw_driver.png differ diff --git a/client app/src/assets/images/cocktails/screw_driver_small.png b/client app/src/assets/images/cocktails/screw_driver_small.png new file mode 100644 index 0000000..aaca64b Binary files /dev/null and b/client app/src/assets/images/cocktails/screw_driver_small.png differ diff --git a/client app/src/assets/images/cocktails/sea_breeze.png b/client app/src/assets/images/cocktails/sea_breeze.png new file mode 100644 index 0000000..eebc9d1 Binary files /dev/null and b/client app/src/assets/images/cocktails/sea_breeze.png differ diff --git a/client app/src/assets/images/cocktails/sea_breeze_small.png b/client app/src/assets/images/cocktails/sea_breeze_small.png new file mode 100644 index 0000000..f46010c Binary files /dev/null and b/client app/src/assets/images/cocktails/sea_breeze_small.png differ diff --git a/client app/src/assets/images/cocktails/sex_on_the_beach.png b/client app/src/assets/images/cocktails/sex_on_the_beach.png new file mode 100644 index 0000000..4fc2fe0 Binary files /dev/null and b/client app/src/assets/images/cocktails/sex_on_the_beach.png differ diff --git a/client app/src/assets/images/cocktails/sex_on_the_beach_small.png b/client app/src/assets/images/cocktails/sex_on_the_beach_small.png new file mode 100644 index 0000000..3f0d7df Binary files /dev/null and b/client app/src/assets/images/cocktails/sex_on_the_beach_small.png differ diff --git a/client app/src/assets/images/cocktails/vodka_coke.png b/client app/src/assets/images/cocktails/vodka_coke.png new file mode 100644 index 0000000..64e2ff8 Binary files /dev/null and b/client app/src/assets/images/cocktails/vodka_coke.png differ diff --git a/client app/src/assets/images/cocktails/vodka_coke_small.png b/client app/src/assets/images/cocktails/vodka_coke_small.png new file mode 100644 index 0000000..de93f95 Binary files /dev/null and b/client app/src/assets/images/cocktails/vodka_coke_small.png differ diff --git a/client app/src/assets/images/cocktails/whiskey_cola.png b/client app/src/assets/images/cocktails/whiskey_cola.png new file mode 100644 index 0000000..64e2ff8 Binary files /dev/null and b/client app/src/assets/images/cocktails/whiskey_cola.png differ diff --git a/client app/src/assets/images/cocktails/whiskey_cola_small.png b/client app/src/assets/images/cocktails/whiskey_cola_small.png new file mode 100644 index 0000000..de93f95 Binary files /dev/null and b/client app/src/assets/images/cocktails/whiskey_cola_small.png differ diff --git a/client app/src/assets/images/cocktails/wild_wild_west.png b/client app/src/assets/images/cocktails/wild_wild_west.png new file mode 100644 index 0000000..c883183 Binary files /dev/null and b/client app/src/assets/images/cocktails/wild_wild_west.png differ diff --git a/client app/src/assets/images/cocktails/wild_wild_west_small.png b/client app/src/assets/images/cocktails/wild_wild_west_small.png new file mode 100644 index 0000000..8c677f6 Binary files /dev/null and b/client app/src/assets/images/cocktails/wild_wild_west_small.png differ diff --git a/client app/src/assets/images/cocktails/woo_woo.png b/client app/src/assets/images/cocktails/woo_woo.png new file mode 100644 index 0000000..dd48148 Binary files /dev/null and b/client app/src/assets/images/cocktails/woo_woo.png differ diff --git a/client app/src/assets/images/cocktails/woo_woo_small.png b/client app/src/assets/images/cocktails/woo_woo_small.png new file mode 100644 index 0000000..3419dab Binary files /dev/null and b/client app/src/assets/images/cocktails/woo_woo_small.png differ diff --git a/client app/src/declarations.d.ts b/client app/src/declarations.d.ts new file mode 100644 index 0000000..423e2f1 --- /dev/null +++ b/client app/src/declarations.d.ts @@ -0,0 +1,14 @@ +/* + Declaration files are how the Typescript compiler knows about the type information(or shape) of an object. + They're what make intellisense work and make Typescript know all about your code. + + A wildcard module is declared below to allow third party libraries to be used in an app even if they don't + provide their own type declarations. + + To learn more about using third party libraries in an Ionic app, check out the docs here: + http://ionicframework.com/docs/v2/resources/third-party-libs/ + + For more info on type definition files, check out the Typescript docs here: + https://www.typescriptlang.org/docs/handbook/declaration-files/introduction.html +*/ +declare module '*'; \ No newline at end of file diff --git a/client app/src/index.html b/client app/src/index.html new file mode 100644 index 0000000..e6106b1 --- /dev/null +++ b/client app/src/index.html @@ -0,0 +1,41 @@ + + + + + Ionic App + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/client app/src/manifest.json b/client app/src/manifest.json new file mode 100644 index 0000000..f6456bb --- /dev/null +++ b/client app/src/manifest.json @@ -0,0 +1,13 @@ +{ + "name": "Ionic", + "short_name": "Ionic", + "start_url": "index.html", + "display": "standalone", + "icons": [{ + "src": "assets/imgs/logo.png", + "sizes": "512x512", + "type": "image/png" + }], + "background_color": "#4e8ef7", + "theme_color": "#4e8ef7" +} \ No newline at end of file diff --git a/client app/src/pages/recipes-filter/recipes-filter.html b/client app/src/pages/recipes-filter/recipes-filter.html new file mode 100644 index 0000000..3d5571c --- /dev/null +++ b/client app/src/pages/recipes-filter/recipes-filter.html @@ -0,0 +1,21 @@ + + + + + + Zutaten + + + + + + + + + + + {{ingredient.name}} + + + + diff --git a/client app/src/pages/recipes-filter/recipes-filter.scss b/client app/src/pages/recipes-filter/recipes-filter.scss new file mode 100644 index 0000000..33cf2c5 --- /dev/null +++ b/client app/src/pages/recipes-filter/recipes-filter.scss @@ -0,0 +1,3 @@ +page-recipes-filter { + +} diff --git a/client app/src/pages/recipes-filter/recipes-filter.ts b/client app/src/pages/recipes-filter/recipes-filter.ts new file mode 100644 index 0000000..93a7200 --- /dev/null +++ b/client app/src/pages/recipes-filter/recipes-filter.ts @@ -0,0 +1,39 @@ +import { Component } from '@angular/core'; +import { NavParams, ViewController } from 'ionic-angular'; +import { RecipesData } from '../../providers/recipes-data'; + +@Component({ + selector: 'page-recipes-filter', + templateUrl: 'recipes-filter.html' +}) +export class RecipesFilterPage { + + ingredients: Array<{name: string, isChecked: boolean}> = []; + + constructor( + private navParams: NavParams, + private viewCtrl: ViewController, + private recipesData: RecipesData + ) { + // let excludedIngredients = this.navParams.data; + + // this.recipesData.getIngredients().then((ingredientNames: string[]) => { + // ingredientNames.forEach(ingredientName => { + // this.ingredients.push({ + // name: ingredientName, + // isChecked: (excludedIngredients.indexOf(ingredientName) === -1) + // }); + // }); + // }); + } + + cancel() { + this.viewCtrl.dismiss(); + } + + applyFilters() { + let excludedIngredients = this.ingredients.filter(ingredient => !ingredient.isChecked).map(ingredient => ingredient.name); + this.viewCtrl.dismiss(excludedIngredients); + } + +} diff --git a/client app/src/pages/recipes/recipes.html b/client app/src/pages/recipes/recipes.html new file mode 100644 index 0000000..63f39e3 --- /dev/null +++ b/client app/src/pages/recipes/recipes.html @@ -0,0 +1,44 @@ + + + Getränkeautomat - Cocktails + + + + + + + + + + + + + + + + + + diff --git a/client app/src/pages/recipes/recipes.scss b/client app/src/pages/recipes/recipes.scss new file mode 100644 index 0000000..034ee1e --- /dev/null +++ b/client app/src/pages/recipes/recipes.scss @@ -0,0 +1,25 @@ +page-recipes { + + .recipe-item { + ion-thumbnail { + min-width: 6rem; + img { + width: auto; + margin: auto; + } + } + ion-label { + white-space: normal; + text-overflow: clip; + overflow: visible; + } + } + + .feeling-lucky { + padding-left: 0px; + ion-thumbnail { + margin: 15px 6px 0px 6px !important; + } + } + +} diff --git a/client app/src/pages/recipes/recipes.ts b/client app/src/pages/recipes/recipes.ts new file mode 100644 index 0000000..a93254c --- /dev/null +++ b/client app/src/pages/recipes/recipes.ts @@ -0,0 +1,150 @@ +import { Component } from '@angular/core'; +import { NavController, NavParams, ModalController } from 'ionic-angular'; +import { Dialogs, BluetoothSerial } from 'ionic-native'; + +import { RecipesData } from '../../providers/recipes-data'; +import { SettingsPage } from '../settings/settings'; +// import { RecipesFilterPage } from '../recipes-filter/recipes-filter'; + +@Component({ + selector: 'page-recipes', + templateUrl: 'recipes.html' +}) +export class RecipesPage { + + _searchInput: string = ''; + + constructor( + public nav: NavController, + public modal: ModalController, + public navParams: NavParams, + private recipesData: RecipesData) { + } + + get searchInput() { + return this._searchInput.trim().toLowerCase(); + } + + set searchInput(val: string) { + this._searchInput = val; + } + + getRecipeDescription(recipe): string { + return recipe.ingredients + .map(recipeIngredient => { + + return this.recipesData.ingredients.find( ingredient => + ingredient.id == recipeIngredient.id + ) || { name: ''}; + + }) + .map( ingredientData => ingredientData.name ) + .join( ', ') || ''; + } + + matchesCompexSearch(recipe): boolean { + let val = this.searchInput; + return val === '' ? true : ( + this.matchNameSearch(recipe, val) || this.matchIngredientsSearch(recipe, val) + ); + } + + // can be made if has all ingredients enabled + canBeMade(recipe) { + return recipe.ingredients + .map( recipeIngredient => { + return this.recipesData.ingredients.find( + ingredient => ingredient.id == recipeIngredient.id + ); + }) + .every( ingredientData => { + return ingredientData && !ingredientData.disabled; + }) + } + + matchNameSearch(recipe, searchString: string): boolean { + return recipe.name.toLowerCase().search(searchString) !== -1; + } + + matchIngredientsSearch(recipe, searchString: string): boolean { + let searchForIngredients = searchString + .replace(/ +/g, ' ') + .replace(/, /g, ',') + .split(','); + + return searchForIngredients.every( searchIngredient => { + return recipe.ingredients.find( recipeIngredient => { + + let ingredientData = this.recipesData.ingredients + .find( ingredient => ingredient.id == recipeIngredient.id); + + return ingredientData.name.toLowerCase().search(searchIngredient) !== -1; + }) + }); + } + + presentSettings() { + this.nav.push(SettingsPage); + } + + lucky() { + let filteredRecipes = this.recipesData.recipes.filter(r => { return this.canBeMade(r)}); + let recipe = filteredRecipes[Math.floor(Math.random() * filteredRecipes.length)]; + + this.serve(recipe); + } + + serve(recipe) { + Dialogs.confirm('Bitte bestätige deine Wahl: ' + recipe.name, 'Ist dies korrekt?', ['JA', 'NEIN']).then( + selection => { + if(selection === 1) { + BluetoothSerial.isConnected().then( + status => { + console.log('Verbinde zum Getraenkeautomaten.. Sende Befehle.'); + this.send(recipe); + }, + error => { + Dialogs.alert('Überprüfe die Verbindung zum Getränkeautomat!', 'Nicht Verbunden', 'OK'); + console.log('Keine Verbindung zum Getraenkeautomat.'); + } + ); + } + } + ); + } + + send(recipe) { + + let commands = []; + let commandString = ''; + + recipe.ingredients.forEach( recipeIngredientData => { + + let ingredientData = this.recipesData.ingredients + .find( ingredient => ingredient.id === recipeIngredientData.id ); + + commands.push(`X${ingredientData.coordinate}`); + commands.push(`F${recipeIngredientData.amount / 20} H${ingredientData.hold} W${ingredientData.wait}`); + + }); + + commands.push('H'); + + while (commands.length !== 30) commands.push('0'); + + commandString = commands.join(',') + '\n'; + + console.log('commandString ', commandString); + + BluetoothSerial.write(commandString).then( + result => { + console.log('Der Befehl, wurde erfolgreich an den Getraenkeautomat uebermittelt.'); + }, + error => { + console.log('Der Befehl, konnte nicht an den Getraenkeautomat gesendet werden.'); + } + ); + + } + +} diff --git a/client app/src/pages/settings-ingredient/settings-ingredient.html b/client app/src/pages/settings-ingredient/settings-ingredient.html new file mode 100644 index 0000000..b3a77d5 --- /dev/null +++ b/client app/src/pages/settings-ingredient/settings-ingredient.html @@ -0,0 +1,29 @@ + + + {{pageTitle}} + + + + + + + + {{ ingredientKey }} + + + + + + + + + + + + diff --git a/client app/src/pages/settings-ingredient/settings-ingredient.scss b/client app/src/pages/settings-ingredient/settings-ingredient.scss new file mode 100644 index 0000000..79d688d --- /dev/null +++ b/client app/src/pages/settings-ingredient/settings-ingredient.scss @@ -0,0 +1,3 @@ +page-settings-ingredient { + +} diff --git a/client app/src/pages/settings-ingredient/settings-ingredient.ts b/client app/src/pages/settings-ingredient/settings-ingredient.ts new file mode 100644 index 0000000..5058025 --- /dev/null +++ b/client app/src/pages/settings-ingredient/settings-ingredient.ts @@ -0,0 +1,45 @@ +import { Component } from '@angular/core'; +import { NavController, NavParams } from 'ionic-angular'; +import { RecipesData } from '../../providers/recipes-data'; + + +@Component({ + selector: 'page-settings-ingredient', + templateUrl: 'settings-ingredient.html' +}) +export class SettingsIngredientPage { + pageTitle: string = ''; + ingredientKeys = [ 'name', 'coordinate', 'hold', 'wait' ]; + ingredient; + isNew: boolean = false; + newIngredientTmpl = { + name: '', + coordinate: '', + hold: 1000, + wait: 1000, + }; + + constructor( + public nav: NavController, + public navParams: NavParams, + public recipesData: RecipesData + ) { + + this.ingredient = this.navParams.get('ingredient'); + + if (!this.ingredient) { + this.isNew = true; + this.ingredient = Object.assign({}, this.newIngredientTmpl); + this.ingredient.id = this.recipesData.generateNewIngrediantId(); + } + + this.ingredient = JSON.parse(JSON.stringify(this.ingredient)); + + this.pageTitle = this.isNew ? 'Neue Zutat' : `Bearbeite "${this.ingredient.name}"`; + } + + saveIngrediant() { + this.recipesData.saveIngrediant(this.ingredient); + this.nav.pop(); + } +} diff --git a/client app/src/pages/settings-ingredients/settings-ingredients.html b/client app/src/pages/settings-ingredients/settings-ingredients.html new file mode 100644 index 0000000..201b8fa --- /dev/null +++ b/client app/src/pages/settings-ingredients/settings-ingredients.html @@ -0,0 +1,27 @@ + + + Zutaten + + + + + + + +

{{ ingredient.name }}

+

{{ getIngredientDescription(ingredient) }}

+
+ + +
+
+ + +
diff --git a/client app/src/pages/settings-ingredients/settings-ingredients.scss b/client app/src/pages/settings-ingredients/settings-ingredients.scss new file mode 100644 index 0000000..a334e32 --- /dev/null +++ b/client app/src/pages/settings-ingredients/settings-ingredients.scss @@ -0,0 +1,3 @@ +page-settings-ingredients { + +} diff --git a/client app/src/pages/settings-ingredients/settings-ingredients.ts b/client app/src/pages/settings-ingredients/settings-ingredients.ts new file mode 100644 index 0000000..585a1ba --- /dev/null +++ b/client app/src/pages/settings-ingredients/settings-ingredients.ts @@ -0,0 +1,36 @@ +import { Component } from '@angular/core'; +import { NavController, NavParams } from 'ionic-angular'; +import { RecipesData } from '../../providers/recipes-data'; +import { SettingsIngredientPage } from '../settings-ingredient/settings-ingredient'; + +@Component({ + selector: 'page-settings-ingredients', + templateUrl: 'settings-ingredients.html' +}) +export class SettingsIngredientsPage { + + constructor( + public nav: NavController, + public navParams: NavParams, + public recipesData: RecipesData + ) { + + } + + toggleIngredientState(ingredient) { + ingredient.disabled = !ingredient.disabled; + this.recipesData.saveDataToLS(); + } + + navIngredientPage(ingredient) { + this.nav.push(SettingsIngredientPage, {ingredient}); + } + + getIngredientDescription(ingredient): string { + return [ 'coordinate', 'hold', 'wait' ] + .map( attrKey => { + return `${attrKey}: ${ingredient[ attrKey ]}`; + }) + .join(' '); + } +} diff --git a/client app/src/pages/settings-recipe/settings-recipe.html b/client app/src/pages/settings-recipe/settings-recipe.html new file mode 100644 index 0000000..bc289a7 --- /dev/null +++ b/client app/src/pages/settings-recipe/settings-recipe.html @@ -0,0 +1,35 @@ + + + {{pageTitle}} + + + + + + + + + + + Zutat: {{i+1}} + + + {{ingredient.amount}} ml + + + + + Zutat: {{i+1}} + + + + {{recipesData.findIngredientById(option.id).name}} + + + + + + + + + diff --git a/client app/src/pages/settings-recipe/settings-recipe.scss b/client app/src/pages/settings-recipe/settings-recipe.scss new file mode 100644 index 0000000..d31b73b --- /dev/null +++ b/client app/src/pages/settings-recipe/settings-recipe.scss @@ -0,0 +1,3 @@ +page-settings-recipe { + +} diff --git a/client app/src/pages/settings-recipe/settings-recipe.ts b/client app/src/pages/settings-recipe/settings-recipe.ts new file mode 100644 index 0000000..1add379 --- /dev/null +++ b/client app/src/pages/settings-recipe/settings-recipe.ts @@ -0,0 +1,44 @@ +import { Component } from '@angular/core'; +import { NavController, NavParams } from 'ionic-angular'; + +import { RecipesData } from '../../providers/recipes-data'; + +@Component({ + selector: 'page-settings-recipe', + templateUrl: 'settings-recipe.html' +}) +export class SettingsRecipePage { + pageTitle: string = ''; + isNew: boolean = false; + ingredients: Array = []; + recipe = { + id: '', + name: '', + image: '', + description: '', + hold: '', + wait: '', + ingredients: [] + }; + + constructor(public nav: NavController, public navParams: NavParams, private recipesData: RecipesData) { + this.init(); + } + + init() { + this.recipe = this.navParams.get('recipe'); + this.recipe = JSON.parse(JSON.stringify(this.recipe)); + + if(!this.recipe) { + this.isNew = true; + } + + this.pageTitle = this.isNew ? 'Neues Rezept' : `Bearbeite "${this.recipe.name}"`; + } + + save(recipe) { + this.recipesData.saveRecipe(recipe); + this.nav.pop(); + } + +} diff --git a/client app/src/pages/settings-recipes/settings-recipes.html b/client app/src/pages/settings-recipes/settings-recipes.html new file mode 100644 index 0000000..2ea7a20 --- /dev/null +++ b/client app/src/pages/settings-recipes/settings-recipes.html @@ -0,0 +1,17 @@ + + + + Rezepte für Drinks + + + + + + + + + {{recipe.name}} +

{{recipesData.getRecipeDescription(recipe)}}

+
+
+
diff --git a/client app/src/pages/settings-recipes/settings-recipes.scss b/client app/src/pages/settings-recipes/settings-recipes.scss new file mode 100644 index 0000000..c51ec0b --- /dev/null +++ b/client app/src/pages/settings-recipes/settings-recipes.scss @@ -0,0 +1,3 @@ +page-settings-recipes { + +} diff --git a/client app/src/pages/settings-recipes/settings-recipes.ts b/client app/src/pages/settings-recipes/settings-recipes.ts new file mode 100644 index 0000000..11ceaeb --- /dev/null +++ b/client app/src/pages/settings-recipes/settings-recipes.ts @@ -0,0 +1,26 @@ +import { Component } from '@angular/core'; +import { NavController } from 'ionic-angular'; + +import { SettingsRecipePage } from '../settings-recipe/settings-recipe'; +import { RecipesData } from '../../providers/recipes-data'; + +@Component({ + selector: 'page-settings-recipes', + templateUrl: 'settings-recipes.html' +}) +export class SettingsRecipesPage { + recipes:Array = []; + + constructor(public nav: NavController, + private recipesData: RecipesData + ) {} + + ngAfterViewInit() { + this.recipes = this.recipesData.recipes.sort((a, b) => a.name < b.name ? -1 : 1); + } + + presentRecipe(recipe) { + this.nav.push(SettingsRecipePage, {recipe}); + } + +} diff --git a/client app/src/pages/settings/settings.html b/client app/src/pages/settings/settings.html new file mode 100644 index 0000000..df27517 --- /dev/null +++ b/client app/src/pages/settings/settings.html @@ -0,0 +1,38 @@ + + + + Getränkeautomat - Settings + + + + + + + + + Cocktail Konfiguration: + + + + + + Getränkeautomat: + + Status + + {{status.statusText}} + + + + +
+ +
+ +
diff --git a/client app/src/pages/settings/settings.scss b/client app/src/pages/settings/settings.scss new file mode 100644 index 0000000..ee78e1c --- /dev/null +++ b/client app/src/pages/settings/settings.scss @@ -0,0 +1,3 @@ +page-settings { + +} diff --git a/client app/src/pages/settings/settings.ts b/client app/src/pages/settings/settings.ts new file mode 100644 index 0000000..88a2e2b --- /dev/null +++ b/client app/src/pages/settings/settings.ts @@ -0,0 +1,72 @@ +import { Component, NgZone } from '@angular/core'; +import { Events, NavController /*, NavParams */} from 'ionic-angular'; + +import { Barbot } from '../../providers/barbot'; +import { SettingsIngredientsPage } from '../settings-ingredients/settings-ingredients'; +import { SettingsRecipesPage } from '../settings-recipes/settings-recipes'; + +@Component({ + selector: 'page-settings', + templateUrl: 'settings.html' +}) +export class SettingsPage { + + status: any; + buttonDisabled: boolean = false; + + constructor(public nav: NavController, + private events: Events, + private barbot: Barbot, + private ngZone: NgZone + ) { + this.listenToEvents(); + } + + ngOnInit() { + this.updateStatus(); + } + + updateStatus() { + this.barbot.getStatus().then(status => { + this.status = status; + }); + } + + listenToEvents() { + this.events.subscribe('barbot:connecting', () => { + this.buttonDisabled = true; + }); + + this.events.subscribe('barbot:connected', () => { + this.buttonDisabled = false; + this.ngZone.run(() => { + this.updateStatus(); + }); + }); + + this.events.subscribe('barbot:disconnected', () => { + this.buttonDisabled = false; + this.ngZone.run(() => { + this.updateStatus(); + }); + }); + } + + presentIngredients() { + this.nav.push(SettingsIngredientsPage); + } + + presentRecipes() { + this.nav.push(SettingsRecipesPage); + } + + handleButtonClick() { + this.buttonDisabled = true; + if(this.status.code) { + this.events.publish('barbot:connect'); + } else { + this.events.publish('barbot:disconnect'); + } + } + +} diff --git a/client app/src/providers/barbot.ts b/client app/src/providers/barbot.ts new file mode 100644 index 0000000..72ff1b1 --- /dev/null +++ b/client app/src/providers/barbot.ts @@ -0,0 +1,65 @@ +import { Injectable } from '@angular/core'; +import { Events, LoadingController } from 'ionic-angular'; +import { Toast, BluetoothSerial } from 'ionic-native'; + +import { RecipesData } from '../providers/recipes-data'; + +import 'rxjs/add/operator/map'; + +@Injectable() +export class Barbot { + document = document; + + private loaderIsPresent: boolean = false; + + constructor(public loadingCtrl: LoadingController, + private events: Events, + public recipesData: RecipesData + ) { + this.listenToEvents(); + } + + listenToEvents() { + let loader = this.loadingCtrl.create({ + content: "Bitte warten..." + }); + + this.events.subscribe('barbot:move', (coordinate: string) => { + let ingredient = this.recipesData.findIngredientByCoordinate(coordinate); + + if(!this.loaderIsPresent) { + this.loaderIsPresent = true; + loader.present(); + } + + let loadingContent = this.document.getElementsByClassName("loading-content"); + + if(loadingContent) loadingContent[0].innerHTML = 'Pouring ' + ingredient.name; + }); + + this.events.subscribe('barbot:home', () => { + this.loaderIsPresent = false; + loader.dismiss().then(() => { + Toast.show('Dein Cocktail ist fertig!', '4000', 'center').subscribe(toast => {}); + }); + + loader = this.loadingCtrl.create({ + content: "Bitte warten..." + }); + }); + } + + getStatus() { + return new Promise((resolve, reject) => { + BluetoothSerial.isConnected().then( + success => { + resolve({code: 0, statusText: 'Verbunden', buttonText: 'Verbindung trennen'}); + }, + error => { + resolve({code: 1, statusText: 'Nicht Verbunden', buttonText: 'Verbinden'}); + } + ); + }); + } + +} diff --git a/client app/src/providers/recipes-data.ts b/client app/src/providers/recipes-data.ts new file mode 100644 index 0000000..08875ff --- /dev/null +++ b/client app/src/providers/recipes-data.ts @@ -0,0 +1,126 @@ +import { Injectable } from '@angular/core'; +import { Http } from '@angular/http'; +import { Observable } from 'rxjs/Rx'; +import 'rxjs/add/operator/map'; +import 'rxjs/add/operator/toPromise'; + +@Injectable() +export class RecipesData { + recipes: Array = []; + ingredients: any = {}; + lsDataKeys = [ 'recipes', 'ingredients' ]; + ls = localStorage; + + constructor(private http: Http) { + } + + fetch(file) { + return this.http.get(`assets/data/${file}.json`) + .map(res => res.json()); + } + + init() { + let shouldCopyPredefinedData; + + shouldCopyPredefinedData = this.lsDataKeys.some( datasetKey => + this.ls.getItem(datasetKey) === null + ); + + return !shouldCopyPredefinedData ? this.loadFromLS() : this.loadFromJSON(); + } + + loadFromLS() { + this.lsDataKeys.forEach( lsDataKey => { + this[ lsDataKey ] = JSON.parse( this.ls.getItem(lsDataKey) ); + }); + + return new Promise( resolve => resolve('all good') ); + } + + loadFromJSON() { + return this.fetch('recipes') + .flatMap( recipesData => { + this.recipes = recipesData; + return this.fetch('ingredients'); + }) + .flatMap( ingredientsData => { + this.ingredients = ingredientsData; + + this.saveDataToLS(); + + return Observable.of('all good'); + }) + .toPromise(); + } + + saveDataToLS() { + this.lsDataKeys.forEach( lsDataKey => { + this.ls.setItem(lsDataKey, JSON.stringify( this[ lsDataKey]) ); + }); + } + + generateNewIngrediantId() { + let newId = this.ingredients + .map(ingredient => ingredient.id) + .sort( (a, b) => b - a )[ 0 ] || 0; + + return newId + 1; + } + + saveIngrediant(modifiedIngredient) { + + let ingredientToModify = this.ingredients.find( ingredient => + ingredient.id == modifiedIngredient.id + ); + + // Modify + if (ingredientToModify) { + Object.assign(ingredientToModify, modifiedIngredient); + // Add new one + } else { + this.ingredients.unshift(modifiedIngredient); + } + + this.saveDataToLS(); + } + + getRecipeDescription(recipe): string { + let description: Array = []; + + recipe.ingredients.map(ingredient => ingredient.id).forEach(id => { + var ingredient = this.findIngredientById(id); + description.push(ingredient.name); + }); + + return description.join( ', ') || ''; + } + + findIngredientById(id) { + let ingredient = this.ingredients.find(ingredient => { + return ingredient.id === parseInt(id); + }); + return ingredient; + } + + findIngredientByCoordinate(coordinate: string) { + let ingredient = this.ingredients.find(ingredient => { + return ingredient.coordinate === coordinate; + }); + return ingredient; + } + + saveRecipe(modifiedRecipe) { + let recipeToModify = this.recipes.find( + recipe => recipe.id === modifiedRecipe.id + ); + + if(recipeToModify) { + Object.assign(recipeToModify, modifiedRecipe); + } else { + this.recipes.unshift(modifiedRecipe); + } + + this.saveDataToLS(); + } + +} diff --git a/client app/src/service-worker.js b/client app/src/service-worker.js new file mode 100644 index 0000000..0928a8f --- /dev/null +++ b/client app/src/service-worker.js @@ -0,0 +1,80 @@ +// tick this to make the cache invalidate and update +const CACHE_VERSION = 1; +const CURRENT_CACHES = { + 'read-through': 'read-through-cache-v' + CACHE_VERSION +}; + +self.addEventListener('activate', (event) => { + // Delete all caches that aren't named in CURRENT_CACHES. + // While there is only one cache in this example, the same logic will handle the case where + // there are multiple versioned caches. + const expectedCacheNames = Object.keys(CURRENT_CACHES).map((key) => { + return CURRENT_CACHES[key]; + }); + + event.waitUntil( + caches.keys().then((cacheNames) => { + return Promise.all( + cacheNames.map((cacheName) => { + if (expectedCacheNames.indexOf(cacheName) === -1) { + // If this cache name isn't present in the array of "expected" cache names, then delete it. + console.log('Deleting out of date cache:', cacheName); + return caches.delete(cacheName); + } + }) + ); + }) + ); +}); + +// This sample illustrates an aggressive approach to caching, in which every valid response is +// cached and every request is first checked against the cache. +// This may not be an appropriate approach if your web application makes requests for +// arbitrary URLs as part of its normal operation (e.g. a RSS client or a news aggregator), +// as the cache could end up containing large responses that might not end up ever being accessed. +// Other approaches, like selectively caching based on response headers or only caching +// responses served from a specific domain, might be more appropriate for those use cases. +self.addEventListener('fetch', (event) => { + + event.respondWith( + caches.open(CURRENT_CACHES['read-through']).then((cache) => { + return cache.match(event.request).then((response) => { + if (response) { + // If there is an entry in the cache for event.request, then response will be defined + // and we can just return it. + + return response; + } + + // Otherwise, if there is no entry in the cache for event.request, response will be + // undefined, and we need to fetch() the resource. + console.log(' No response for %s found in cache. ' + + 'About to fetch from network...', event.request.url); + + // We call .clone() on the request since we might use it in the call to cache.put() later on. + // Both fetch() and cache.put() "consume" the request, so we need to make a copy. + // (see https://fetch.spec.whatwg.org/#dom-request-clone) + return fetch(event.request.clone()).then((response) => { + + // Optional: add in extra conditions here, e.g. response.type == 'basic' to only cache + // responses from the same domain. See https://fetch.spec.whatwg.org/#concept-response-type + if (response.status < 400 && response.type === 'basic') { + // We need to call .clone() on the response object to save a copy of it to the cache. + // (https://fetch.spec.whatwg.org/#dom-request-clone) + cache.put(event.request, response.clone()); + } + + // Return the original response object, which will be used to fulfill the resource request. + return response; + }); + }).catch((error) => { + // This catch() will handle exceptions that arise from the match() or fetch() operations. + // Note that a HTTP error response (e.g. 404) will NOT trigger an exception. + // It will return a normal response object that has the appropriate error code set. + console.error(' Read-through caching failed:', error); + + throw error; + }); + }) + ); +}); \ No newline at end of file diff --git a/client app/src/theme/variables.scss b/client app/src/theme/variables.scss new file mode 100644 index 0000000..d188bf0 --- /dev/null +++ b/client app/src/theme/variables.scss @@ -0,0 +1,78 @@ +// Ionic Variables and Theming. For more info, please see: +// http://ionicframework.com/docs/v2/theming/ +$font-path: "../assets/fonts"; + +@import "ionic.globals"; + + +// Shared Variables +// -------------------------------------------------- +// To customize the look and feel of this app, you can override +// the Sass variables found in Ionic's source scss files. +// To view all the possible Ionic variables, see: +// http://ionicframework.com/docs/v2/theming/overriding-ionic-variables/ + + + + +// Named Color Variables +// -------------------------------------------------- +// Named colors makes it easy to reuse colors on various components. +// It's highly recommended to change the default colors +// to match your app's branding. Ionic uses a Sass map of +// colors so you can add, rename and remove colors as needed. +// The "primary" color is the only required color in the map. + +$colors: ( + primary: #387ef5, + secondary: #32db64, + danger: #f53d3d, + light: #f4f4f4, + dark: #222 +); + + +// App iOS Variables +// -------------------------------------------------- +// iOS only Sass variables can go here + + + + +// App Material Design Variables +// -------------------------------------------------- +// Material Design only Sass variables can go here + + + + +// App Windows Variables +// -------------------------------------------------- +// Windows only Sass variables can go here + + + + +// App Theme +// -------------------------------------------------- +// Ionic apps can have different themes applied, which can +// then be future customized. This import comes last +// so that the above variables are used and Ionic's +// default are overridden. + +@import "ionic.theme.default"; + + +// Ionicons +// -------------------------------------------------- +// The premium icon font for Ionic. For more info, please see: +// http://ionicframework.com/docs/v2/ionicons/ + +@import "ionicons"; + + +// Fonts +// -------------------------------------------------- + +@import "roboto"; +@import "noto-sans"; diff --git a/client app/tsconfig.json b/client app/tsconfig.json new file mode 100644 index 0000000..2e450f9 --- /dev/null +++ b/client app/tsconfig.json @@ -0,0 +1,26 @@ +{ + "compilerOptions": { + "allowSyntheticDefaultImports": true, + "declaration": false, + "emitDecoratorMetadata": true, + "experimentalDecorators": true, + "lib": [ + "dom", + "es2015" + ], + "module": "es2015", + "moduleResolution": "node", + "sourceMap": true, + "target": "es5" + }, + "include": [ + "src/**/*.ts" + ], + "exclude": [ + "node_modules" + ], + "compileOnSave": false, + "atom": { + "rewriteTsconfig": false + } +} \ No newline at end of file diff --git a/client app/tslint.json b/client app/tslint.json new file mode 100644 index 0000000..dd8e8d8 --- /dev/null +++ b/client app/tslint.json @@ -0,0 +1,11 @@ +{ + "rules": { + "no-duplicate-variable": true, + "no-unused-variable": [ + true + ] + }, + "rulesDirectory": [ + "node_modules/tslint-eslint-rules/dist/rules" + ] +} diff --git a/client app/www/assets/data/ingredients.json b/client app/www/assets/data/ingredients.json new file mode 100644 index 0000000..4ae1c35 --- /dev/null +++ b/client app/www/assets/data/ingredients.json @@ -0,0 +1,74 @@ +[ + { + "id": 1, + "name":"Vodka", + "coordinate":"-4995", + "hold":"2500", + "wait":"3000", + "disabled": false + }, + { + "id": 2, + "name":"Orangen Saft", + "coordinate":"-2510", + "hold":"2400", + "wait":"2500", + "disabled": false + }, + { + "id": 3, + "name":"Weisser Rum", + "coordinate":"-4010", + "hold":"2500", + "wait":"2400", + "disabled": false + }, + { + "id": 4, + "name":"Coca-Cola", + "coordinate":"-1000", + "hold":"2500", + "wait":"2800", + "disabled": false + }, + { + "id": 5, + "name":"Pfirsich Likör", + "coordinate":"-3500", + "hold":"2500", + "wait":"2400", + "disabled": false + }, + { + "id": 6, + "name":"Cranberry Saft", + "coordinate":"-1990", + "hold":"2300", + "wait":"2300", + "disabled": false + }, + { + "id": 7, + "name":"Whiskey", + "coordinate":"-4495", + "hold":"2400", + "wait":"2400", + "disabled": false + }, + { + "id": 8, + "name":"Grapefruit Saft", + "coordinate":"-1490", + "hold":"2600", + "wait":"2500", + "disabled": false + }, + { + "id": 9, + "name":"Melonen Likör", + "coordinate":"-2995", + "hold":"2500", + "wait":"2400", + "disabled": false + } +] diff --git a/client app/www/assets/data/recipes.json b/client app/www/assets/data/recipes.json new file mode 100644 index 0000000..b843aff --- /dev/null +++ b/client app/www/assets/data/recipes.json @@ -0,0 +1,275 @@ +[ + { + "id": 1, + "name":"Screwdriver", + "image":"screw_driver_small.png", + "description":"", + "ingredients":[ + { + "id": 1, + "amount": 40 + }, + { + "id": 2, + "amount": 100 + } + ] + }, + { + "id": 2, + "name":"Cuba Libre", + "image":"cuba_libre_small.png", + "description":"", + "ingredients":[ + { + "id": 3, + "amount": 40 + }, + { + "id": 4, + "amount": 120 + } + ] + }, + { + "id": 3, + "name":"Sex on the Beach", + "image":"sex_on_the_beach_small.png", + "description":"", + "ingredients":[ + { + "id": 1, + "amount": 40 + }, + { + "id": 5, + "amount": 20 + }, + { + "id": 2, + "amount": 40 + }, + { + "id": 6, + "amount": 40 + } + ] + }, + { + "id": 4, + "name":"Whiskey Cola", + "image":"whiskey_cola_small.png", + "description":"", + "ingredients":[ + { + "id": 7, + "name": "Whiskey", + "amount": 40 + }, + { + "id": 4, + "amount": 120 + } + ] + }, + { + "id": 5, + "name":"Cape Codder", + "image":"cape_codder_small.png", + "description":"", + "ingredients":[ + { + "id": 1, + "amount": 40 + }, + { + "id": 6, + "amount": 120 + } + ] + }, + { + "id": 6, + "name":"Woo Woo", + "image":"woo_woo_small.png", + "description":"", + "ingredients":[ + { + "id": 1, + "amount": 40 + }, + { + "id": 5, + "amount": 20 + }, + { + "id": 6, + "amount": 80 + } + ] + }, + { + "id": 7, + "name":"Wild Wild West", + "image":"wild_wild_west_small.png", + "description":"", + "ingredients":[ + { + "id": 7, + "amount": 40 + }, + { + "id": 5, + "amount": 20 + }, + { + "id": 6, + "amount": 100 + } + ] + }, + { + "id": 8, + "name":"Vodka Coke", + "image":"vodka_coke_small.png", + "description":"", + "ingredients":[ + { + "id": 1, + "amount": 40 + }, + { + "id": 4, + "amount": 120 + } + ] + }, + { + "id": 9, + "name":"Cuban Screw", + "image":"cuban_screw_small.png", + "description":"", + "ingredients":[ + { + "id": 3, + "amount": 40 + }, + { + "id": 2, + "amount": 120 + } + ] + }, + { + "id": 10, + "name":"Sea Breeze", + "image":"sea_breeze_small.png", + "description":"", + "ingredients":[ + { + "id": 1, + "amount": 40 + }, + { + "id": 6, + "amount": 100 + }, + { + "id": 8, + "amount": 20 + } + ] + }, + { + "id": 11, + "name":"Greyhound", + "image":"greyhound_small.png", + "description":"", + "ingredients":[ + { + "id": 1, + "amount": 40 + }, + { + "id": 8, + "amount": 120 + } + ] + }, + { + "id": 12, + "name":"Jolly Rancher", + "image":"jolly_rancher_small.png", + "description":"", + "ingredients":[ + { + "id": 1, + "amount": 40 + }, + { + "id": 9, + "amount": 20 + }, + { + "id": 6, + "amount": 100 + } + ] + }, + { + "id": 13, + "name":"Melon Ball", + "image":"melon_ball_small.png", + "description":"", + "ingredients":[ + { + "id": 1, + "amount": 40 + }, + { + "id": 9, + "amount": 20 + }, + { + "id": 2, + "amount": 100 + } + ] + }, + { + "id": 14, + "name":"Fuzzy Navel", + "image":"fuzzy_navel_small.png", + "description":"", + "ingredients":[ + { + "id": 5, + "amount": 40 + }, + { + "id": 2, + "amount": 100 + } + ] + }, + { + "id": 15, + "name":"Hairy Navel", + "image":"fuzzy_navel_small.png", + "description":"", + "ingredients":[ + { + "id": 5, + "amount": 40 + }, + { + "id": 1, + "amount": 20 + }, + { + "id": 2, + "amount": 100 + } + ] + } +] diff --git a/client app/www/assets/fonts/ionicons.eot b/client app/www/assets/fonts/ionicons.eot new file mode 100644 index 0000000..94ba2be Binary files /dev/null and b/client app/www/assets/fonts/ionicons.eot differ diff --git a/client app/www/assets/fonts/ionicons.scss b/client app/www/assets/fonts/ionicons.scss new file mode 100644 index 0000000..dc8e92c --- /dev/null +++ b/client app/www/assets/fonts/ionicons.scss @@ -0,0 +1,35 @@ + +// Ionicons Icon Font CSS +// -------------------------- +// Ionicons CSS for Ionic's element +// ionicons-icons.scss has the icons and their unicode characters + +$ionicons-font-path: $font-path !default; + +@import "ionicons-icons"; +@import "ionicons-variables"; + + +@font-face { + font-family: "Ionicons"; + src: url("#{$ionicons-font-path}/ionicons.woff2?v=#{$ionicons-version}") format("woff2"), + url("#{$ionicons-font-path}/ionicons.woff?v=#{$ionicons-version}") format("woff"), + url("#{$ionicons-font-path}/ionicons.ttf?v=#{$ionicons-version}") format("truetype"); + font-weight: normal; + font-style: normal; +} + +ion-icon { + display: inline-block; + + font-family: "Ionicons"; + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + font-style: normal; + font-variant: normal; + font-weight: normal; + line-height: 1; + text-rendering: auto; + text-transform: none; + speak: none; +} diff --git a/client app/www/assets/fonts/ionicons.svg b/client app/www/assets/fonts/ionicons.svg new file mode 100644 index 0000000..908c39b --- /dev/null +++ b/client app/www/assets/fonts/ionicons.svg @@ -0,0 +1,2630 @@ + + + + + +Created by FontForge 20150913 at Mon Jan 11 15:33:02 2016 + By Adam Bradley +Copyright (c) 2016, Adam Bradley + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/client app/www/assets/fonts/ionicons.ttf b/client app/www/assets/fonts/ionicons.ttf new file mode 100644 index 0000000..307ad88 Binary files /dev/null and b/client app/www/assets/fonts/ionicons.ttf differ diff --git a/client app/www/assets/fonts/ionicons.woff b/client app/www/assets/fonts/ionicons.woff new file mode 100644 index 0000000..e997f0d Binary files /dev/null and b/client app/www/assets/fonts/ionicons.woff differ diff --git a/client app/www/assets/fonts/ionicons.woff2 b/client app/www/assets/fonts/ionicons.woff2 new file mode 100644 index 0000000..66bcf5c Binary files /dev/null and b/client app/www/assets/fonts/ionicons.woff2 differ diff --git a/client app/www/assets/fonts/noto-sans-bold.ttf b/client app/www/assets/fonts/noto-sans-bold.ttf new file mode 100644 index 0000000..6e00cdc Binary files /dev/null and b/client app/www/assets/fonts/noto-sans-bold.ttf differ diff --git a/client app/www/assets/fonts/noto-sans-regular.ttf b/client app/www/assets/fonts/noto-sans-regular.ttf new file mode 100644 index 0000000..9dd1019 Binary files /dev/null and b/client app/www/assets/fonts/noto-sans-regular.ttf differ diff --git a/client app/www/assets/fonts/noto-sans.scss b/client app/www/assets/fonts/noto-sans.scss new file mode 100644 index 0000000..bd60e94 --- /dev/null +++ b/client app/www/assets/fonts/noto-sans.scss @@ -0,0 +1,34 @@ +// Noto Sans Font +// Google +// Apache License, version 2.0 +// http://www.apache.org/licenses/LICENSE-2.0.html + +$noto-sans-font-path: $font-path !default; + +@font-face { + font-family: "Noto Sans"; + font-style: normal; + font-weight: 300; + src: local("Noto Sans"), local("Noto-Sans-Regular"), url("#{$noto-sans-font-path}/noto-sans-regular.ttf") format("truetype"); +} + +@font-face { + font-family: "Noto Sans"; + font-style: normal; + font-weight: 400; + src: local("Noto Sans"), local("Noto-Sans-Regular"), url("#{$noto-sans-font-path}/noto-sans-regular.ttf") format("truetype"); +} + +@font-face { + font-family: "Noto Sans"; + font-style: normal; + font-weight: 500; + src: local("Noto Sans Bold"), local("Noto-Sans-Bold"), url("#{$noto-sans-font-path}/noto-sans-bold.ttf") format("truetype"); +} + +@font-face { + font-family: "Noto Sans"; + font-style: normal; + font-weight: 700; + src: local("Noto Sans Bold"), local("Noto-Sans-Bold"), url("#{$noto-sans-font-path}/noto-sans-bold.ttf") format("truetype"); +} diff --git a/client app/www/assets/fonts/roboto-bold.ttf b/client app/www/assets/fonts/roboto-bold.ttf new file mode 100644 index 0000000..4e35166 Binary files /dev/null and b/client app/www/assets/fonts/roboto-bold.ttf differ diff --git a/client app/www/assets/fonts/roboto-bold.woff b/client app/www/assets/fonts/roboto-bold.woff new file mode 100644 index 0000000..3143de2 Binary files /dev/null and b/client app/www/assets/fonts/roboto-bold.woff differ diff --git a/client app/www/assets/fonts/roboto-light.ttf b/client app/www/assets/fonts/roboto-light.ttf new file mode 100644 index 0000000..5e26ccd Binary files /dev/null and b/client app/www/assets/fonts/roboto-light.ttf differ diff --git a/client app/www/assets/fonts/roboto-light.woff b/client app/www/assets/fonts/roboto-light.woff new file mode 100644 index 0000000..1bff3ec Binary files /dev/null and b/client app/www/assets/fonts/roboto-light.woff differ diff --git a/client app/www/assets/fonts/roboto-medium.ttf b/client app/www/assets/fonts/roboto-medium.ttf new file mode 100644 index 0000000..0347106 Binary files /dev/null and b/client app/www/assets/fonts/roboto-medium.ttf differ diff --git a/client app/www/assets/fonts/roboto-medium.woff b/client app/www/assets/fonts/roboto-medium.woff new file mode 100644 index 0000000..d3c82e1 Binary files /dev/null and b/client app/www/assets/fonts/roboto-medium.woff differ diff --git a/client app/www/assets/fonts/roboto-regular.ttf b/client app/www/assets/fonts/roboto-regular.ttf new file mode 100644 index 0000000..05037ed Binary files /dev/null and b/client app/www/assets/fonts/roboto-regular.ttf differ diff --git a/client app/www/assets/fonts/roboto-regular.woff b/client app/www/assets/fonts/roboto-regular.woff new file mode 100644 index 0000000..5e353cf Binary files /dev/null and b/client app/www/assets/fonts/roboto-regular.woff differ diff --git a/client app/www/assets/fonts/roboto.scss b/client app/www/assets/fonts/roboto.scss new file mode 100644 index 0000000..b0baa1a --- /dev/null +++ b/client app/www/assets/fonts/roboto.scss @@ -0,0 +1,34 @@ +// Roboto Font +// Google +// Apache License, version 2.0 +// http://www.apache.org/licenses/LICENSE-2.0.html + +$roboto-font-path: $font-path !default; + +@font-face { + font-family: "Roboto"; + font-style: normal; + font-weight: 300; + src: local("Roboto Light"), local("Roboto-Light"), url("#{$roboto-font-path}/roboto-light.ttf") format("truetype"), url("#{$roboto-font-path}/roboto-light.woff") format("woff"); +} + +@font-face { + font-family: "Roboto"; + font-style: normal; + font-weight: 400; + src: local("Roboto"), local("Roboto-Regular"), url("#{$roboto-font-path}/roboto-regular.ttf") format("truetype"), url("#{$roboto-font-path}/roboto-regular.woff") format("woff"); +} + +@font-face { + font-family: "Roboto"; + font-style: normal; + font-weight: 500; + src: local("Roboto Medium"), local("Roboto-Medium"), url("#{$roboto-font-path}/roboto-medium.ttf") format("truetype"), url("#{$roboto-font-path}/roboto-medium.woff") format("woff"); +} + +@font-face { + font-family: "Roboto"; + font-style: normal; + font-weight: 700; + src: local("Roboto Bold"), local("Roboto-Bold"), url("#{$roboto-font-path}/roboto-bold.ttf") format("truetype"), url("#{$roboto-font-path}/roboto-bold.woff") format("woff"); +} diff --git a/client app/www/assets/icon/favicon.ico b/client app/www/assets/icon/favicon.ico new file mode 100644 index 0000000..1c0e9ab Binary files /dev/null and b/client app/www/assets/icon/favicon.ico differ diff --git a/client app/www/assets/images/cocktails/cape_codder.png b/client app/www/assets/images/cocktails/cape_codder.png new file mode 100644 index 0000000..3f8a393 Binary files /dev/null and b/client app/www/assets/images/cocktails/cape_codder.png differ diff --git a/client app/www/assets/images/cocktails/cape_codder_small.png b/client app/www/assets/images/cocktails/cape_codder_small.png new file mode 100644 index 0000000..f0b09e1 Binary files /dev/null and b/client app/www/assets/images/cocktails/cape_codder_small.png differ diff --git a/client app/www/assets/images/cocktails/cuba_libre.png b/client app/www/assets/images/cocktails/cuba_libre.png new file mode 100644 index 0000000..63ec62a Binary files /dev/null and b/client app/www/assets/images/cocktails/cuba_libre.png differ diff --git a/client app/www/assets/images/cocktails/cuba_libre_small.png b/client app/www/assets/images/cocktails/cuba_libre_small.png new file mode 100644 index 0000000..aeb2236 Binary files /dev/null and b/client app/www/assets/images/cocktails/cuba_libre_small.png differ diff --git a/client app/www/assets/images/cocktails/cuban_screw.png b/client app/www/assets/images/cocktails/cuban_screw.png new file mode 100644 index 0000000..2eece66 Binary files /dev/null and b/client app/www/assets/images/cocktails/cuban_screw.png differ diff --git a/client app/www/assets/images/cocktails/cuban_screw_small.png b/client app/www/assets/images/cocktails/cuban_screw_small.png new file mode 100644 index 0000000..7c23861 Binary files /dev/null and b/client app/www/assets/images/cocktails/cuban_screw_small.png differ diff --git a/client app/www/assets/images/cocktails/feeling_lucky_small.png b/client app/www/assets/images/cocktails/feeling_lucky_small.png new file mode 100644 index 0000000..a6d5063 Binary files /dev/null and b/client app/www/assets/images/cocktails/feeling_lucky_small.png differ diff --git a/client app/www/assets/images/cocktails/fuzzy_navel.png b/client app/www/assets/images/cocktails/fuzzy_navel.png new file mode 100644 index 0000000..2245a9f Binary files /dev/null and b/client app/www/assets/images/cocktails/fuzzy_navel.png differ diff --git a/client app/www/assets/images/cocktails/fuzzy_navel_small.png b/client app/www/assets/images/cocktails/fuzzy_navel_small.png new file mode 100644 index 0000000..9ae1598 Binary files /dev/null and b/client app/www/assets/images/cocktails/fuzzy_navel_small.png differ diff --git a/client app/www/assets/images/cocktails/greyhound.png b/client app/www/assets/images/cocktails/greyhound.png new file mode 100644 index 0000000..cec40e7 Binary files /dev/null and b/client app/www/assets/images/cocktails/greyhound.png differ diff --git a/client app/www/assets/images/cocktails/greyhound_small.png b/client app/www/assets/images/cocktails/greyhound_small.png new file mode 100644 index 0000000..9f78553 Binary files /dev/null and b/client app/www/assets/images/cocktails/greyhound_small.png differ diff --git a/client app/www/assets/images/cocktails/jolly_rancher.png b/client app/www/assets/images/cocktails/jolly_rancher.png new file mode 100644 index 0000000..d81d38f Binary files /dev/null and b/client app/www/assets/images/cocktails/jolly_rancher.png differ diff --git a/client app/www/assets/images/cocktails/jolly_rancher_small.png b/client app/www/assets/images/cocktails/jolly_rancher_small.png new file mode 100644 index 0000000..8aeaf06 Binary files /dev/null and b/client app/www/assets/images/cocktails/jolly_rancher_small.png differ diff --git a/client app/www/assets/images/cocktails/malibu_sunrise.png b/client app/www/assets/images/cocktails/malibu_sunrise.png new file mode 100644 index 0000000..faedecd Binary files /dev/null and b/client app/www/assets/images/cocktails/malibu_sunrise.png differ diff --git a/client app/www/assets/images/cocktails/malibu_sunrise_small.png b/client app/www/assets/images/cocktails/malibu_sunrise_small.png new file mode 100644 index 0000000..696bd4d Binary files /dev/null and b/client app/www/assets/images/cocktails/malibu_sunrise_small.png differ diff --git a/client app/www/assets/images/cocktails/melon_ball.png b/client app/www/assets/images/cocktails/melon_ball.png new file mode 100644 index 0000000..fafb933 Binary files /dev/null and b/client app/www/assets/images/cocktails/melon_ball.png differ diff --git a/client app/www/assets/images/cocktails/melon_ball_small.png b/client app/www/assets/images/cocktails/melon_ball_small.png new file mode 100644 index 0000000..2732d88 Binary files /dev/null and b/client app/www/assets/images/cocktails/melon_ball_small.png differ diff --git a/client app/www/assets/images/cocktails/screw_driver.png b/client app/www/assets/images/cocktails/screw_driver.png new file mode 100644 index 0000000..0fec587 Binary files /dev/null and b/client app/www/assets/images/cocktails/screw_driver.png differ diff --git a/client app/www/assets/images/cocktails/screw_driver_small.png b/client app/www/assets/images/cocktails/screw_driver_small.png new file mode 100644 index 0000000..aaca64b Binary files /dev/null and b/client app/www/assets/images/cocktails/screw_driver_small.png differ diff --git a/client app/www/assets/images/cocktails/sea_breeze.png b/client app/www/assets/images/cocktails/sea_breeze.png new file mode 100644 index 0000000..eebc9d1 Binary files /dev/null and b/client app/www/assets/images/cocktails/sea_breeze.png differ diff --git a/client app/www/assets/images/cocktails/sea_breeze_small.png b/client app/www/assets/images/cocktails/sea_breeze_small.png new file mode 100644 index 0000000..f46010c Binary files /dev/null and b/client app/www/assets/images/cocktails/sea_breeze_small.png differ diff --git a/client app/www/assets/images/cocktails/sex_on_the_beach.png b/client app/www/assets/images/cocktails/sex_on_the_beach.png new file mode 100644 index 0000000..4fc2fe0 Binary files /dev/null and b/client app/www/assets/images/cocktails/sex_on_the_beach.png differ diff --git a/client app/www/assets/images/cocktails/sex_on_the_beach_small.png b/client app/www/assets/images/cocktails/sex_on_the_beach_small.png new file mode 100644 index 0000000..3f0d7df Binary files /dev/null and b/client app/www/assets/images/cocktails/sex_on_the_beach_small.png differ diff --git a/client app/www/assets/images/cocktails/vodka_coke.png b/client app/www/assets/images/cocktails/vodka_coke.png new file mode 100644 index 0000000..64e2ff8 Binary files /dev/null and b/client app/www/assets/images/cocktails/vodka_coke.png differ diff --git a/client app/www/assets/images/cocktails/vodka_coke_small.png b/client app/www/assets/images/cocktails/vodka_coke_small.png new file mode 100644 index 0000000..de93f95 Binary files /dev/null and b/client app/www/assets/images/cocktails/vodka_coke_small.png differ diff --git a/client app/www/assets/images/cocktails/whiskey_cola.png b/client app/www/assets/images/cocktails/whiskey_cola.png new file mode 100644 index 0000000..64e2ff8 Binary files /dev/null and b/client app/www/assets/images/cocktails/whiskey_cola.png differ diff --git a/client app/www/assets/images/cocktails/whiskey_cola_small.png b/client app/www/assets/images/cocktails/whiskey_cola_small.png new file mode 100644 index 0000000..de93f95 Binary files /dev/null and b/client app/www/assets/images/cocktails/whiskey_cola_small.png differ diff --git a/client app/www/assets/images/cocktails/wild_wild_west.png b/client app/www/assets/images/cocktails/wild_wild_west.png new file mode 100644 index 0000000..c883183 Binary files /dev/null and b/client app/www/assets/images/cocktails/wild_wild_west.png differ diff --git a/client app/www/assets/images/cocktails/wild_wild_west_small.png b/client app/www/assets/images/cocktails/wild_wild_west_small.png new file mode 100644 index 0000000..8c677f6 Binary files /dev/null and b/client app/www/assets/images/cocktails/wild_wild_west_small.png differ diff --git a/client app/www/assets/images/cocktails/woo_woo.png b/client app/www/assets/images/cocktails/woo_woo.png new file mode 100644 index 0000000..dd48148 Binary files /dev/null and b/client app/www/assets/images/cocktails/woo_woo.png differ diff --git a/client app/www/assets/images/cocktails/woo_woo_small.png b/client app/www/assets/images/cocktails/woo_woo_small.png new file mode 100644 index 0000000..3419dab Binary files /dev/null and b/client app/www/assets/images/cocktails/woo_woo_small.png differ diff --git a/client app/www/build/main.css b/client app/www/build/main.css new file mode 100644 index 0000000..53c200f --- /dev/null +++ b/client app/www/build/main.css @@ -0,0 +1,22126 @@ +@charset "UTF-8"; +/*! + Ionicons, v3.0.0-alpha.3 + Created by Ben Sperry for the Ionic Framework, http://ionicons.com/ + https://twitter.com/benjsperry https://twitter.com/ionicframework + MIT License: https://github.com/driftyco/ionicons + + Android-style icons originally built by Google’s + Material Design Icons: https://github.com/google/material-design-icons + used under CC BY http://creativecommons.org/licenses/by/4.0/ + Modified icons to fit ionicon’s grid from original. +*/ +@font-face { + font-family: "Ionicons"; + src: url("../assets/fonts/ionicons.eot?v=3.0.0-alpha.3"); + src: url("../assets/fonts/ionicons.eot?v=3.0.0-alpha.3#iefix") format("embedded-opentype"), url("../assets/fonts/ionicons.woff2?v=3.0.0-alpha.3") format("woff2"), url("../assets/fonts/ionicons.woff?v=3.0.0-alpha.3") format("woff"), url("../assets/fonts/ionicons.ttf?v=3.0.0-alpha.3") format("truetype"), url("../assets/fonts/ionicons.svg?v=3.0.0-alpha.3#Ionicons") format("svg"); + font-weight: normal; + font-style: normal; +} + +.ion, .ionicons, +.ion-ios-add:before, +.ion-ios-add-circle:before, +.ion-ios-add-circle-outline:before, +.ion-ios-add-outline:before, +.ion-ios-alarm:before, +.ion-ios-alarm-outline:before, +.ion-ios-albums:before, +.ion-ios-albums-outline:before, +.ion-ios-alert:before, +.ion-ios-alert-outline:before, +.ion-ios-american-football:before, +.ion-ios-american-football-outline:before, +.ion-ios-analytics:before, +.ion-ios-analytics-outline:before, +.ion-ios-aperture:before, +.ion-ios-aperture-outline:before, +.ion-ios-apps:before, +.ion-ios-apps-outline:before, +.ion-ios-appstore:before, +.ion-ios-appstore-outline:before, +.ion-ios-archive:before, +.ion-ios-archive-outline:before, +.ion-ios-arrow-back:before, +.ion-ios-arrow-back-outline:before, +.ion-ios-arrow-down:before, +.ion-ios-arrow-down-outline:before, +.ion-ios-arrow-dropdown:before, +.ion-ios-arrow-dropdown-circle:before, +.ion-ios-arrow-dropdown-circle-outline:before, +.ion-ios-arrow-dropdown-outline:before, +.ion-ios-arrow-dropleft:before, +.ion-ios-arrow-dropleft-circle:before, +.ion-ios-arrow-dropleft-circle-outline:before, +.ion-ios-arrow-dropleft-outline:before, +.ion-ios-arrow-dropright:before, +.ion-ios-arrow-dropright-circle:before, +.ion-ios-arrow-dropright-circle-outline:before, +.ion-ios-arrow-dropright-outline:before, +.ion-ios-arrow-dropup:before, +.ion-ios-arrow-dropup-circle:before, +.ion-ios-arrow-dropup-circle-outline:before, +.ion-ios-arrow-dropup-outline:before, +.ion-ios-arrow-forward:before, +.ion-ios-arrow-forward-outline:before, +.ion-ios-arrow-round-back:before, +.ion-ios-arrow-round-back-outline:before, +.ion-ios-arrow-round-down:before, +.ion-ios-arrow-round-down-outline:before, +.ion-ios-arrow-round-forward:before, +.ion-ios-arrow-round-forward-outline:before, +.ion-ios-arrow-round-up:before, +.ion-ios-arrow-round-up-outline:before, +.ion-ios-arrow-up:before, +.ion-ios-arrow-up-outline:before, +.ion-ios-at:before, +.ion-ios-at-outline:before, +.ion-ios-attach:before, +.ion-ios-attach-outline:before, +.ion-ios-backspace:before, +.ion-ios-backspace-outline:before, +.ion-ios-barcode:before, +.ion-ios-barcode-outline:before, +.ion-ios-baseball:before, +.ion-ios-baseball-outline:before, +.ion-ios-basket:before, +.ion-ios-basket-outline:before, +.ion-ios-basketball:before, +.ion-ios-basketball-outline:before, +.ion-ios-battery-charging:before, +.ion-ios-battery-charging-outline:before, +.ion-ios-battery-dead:before, +.ion-ios-battery-dead-outline:before, +.ion-ios-battery-full:before, +.ion-ios-battery-full-outline:before, +.ion-ios-beaker:before, +.ion-ios-beaker-outline:before, +.ion-ios-beer:before, +.ion-ios-beer-outline:before, +.ion-ios-bicycle:before, +.ion-ios-bicycle-outline:before, +.ion-ios-bluetooth:before, +.ion-ios-bluetooth-outline:before, +.ion-ios-boat:before, +.ion-ios-boat-outline:before, +.ion-ios-body:before, +.ion-ios-body-outline:before, +.ion-ios-bonfire:before, +.ion-ios-bonfire-outline:before, +.ion-ios-book:before, +.ion-ios-book-outline:before, +.ion-ios-bookmark:before, +.ion-ios-bookmark-outline:before, +.ion-ios-bookmarks:before, +.ion-ios-bookmarks-outline:before, +.ion-ios-bowtie:before, +.ion-ios-bowtie-outline:before, +.ion-ios-briefcase:before, +.ion-ios-briefcase-outline:before, +.ion-ios-browsers:before, +.ion-ios-browsers-outline:before, +.ion-ios-brush:before, +.ion-ios-brush-outline:before, +.ion-ios-bug:before, +.ion-ios-bug-outline:before, +.ion-ios-build:before, +.ion-ios-build-outline:before, +.ion-ios-bulb:before, +.ion-ios-bulb-outline:before, +.ion-ios-bus:before, +.ion-ios-bus-outline:before, +.ion-ios-cafe:before, +.ion-ios-cafe-outline:before, +.ion-ios-calculator:before, +.ion-ios-calculator-outline:before, +.ion-ios-calendar:before, +.ion-ios-calendar-outline:before, +.ion-ios-call:before, +.ion-ios-call-outline:before, +.ion-ios-camera:before, +.ion-ios-camera-outline:before, +.ion-ios-car:before, +.ion-ios-car-outline:before, +.ion-ios-card:before, +.ion-ios-card-outline:before, +.ion-ios-cart:before, +.ion-ios-cart-outline:before, +.ion-ios-cash:before, +.ion-ios-cash-outline:before, +.ion-ios-chatboxes:before, +.ion-ios-chatboxes-outline:before, +.ion-ios-chatbubbles:before, +.ion-ios-chatbubbles-outline:before, +.ion-ios-checkbox:before, +.ion-ios-checkbox-outline:before, +.ion-ios-checkmark:before, +.ion-ios-checkmark-circle:before, +.ion-ios-checkmark-circle-outline:before, +.ion-ios-checkmark-outline:before, +.ion-ios-clipboard:before, +.ion-ios-clipboard-outline:before, +.ion-ios-clock:before, +.ion-ios-clock-outline:before, +.ion-ios-close:before, +.ion-ios-close-circle:before, +.ion-ios-close-circle-outline:before, +.ion-ios-close-outline:before, +.ion-ios-closed-captioning:before, +.ion-ios-closed-captioning-outline:before, +.ion-ios-cloud:before, +.ion-ios-cloud-circle:before, +.ion-ios-cloud-circle-outline:before, +.ion-ios-cloud-done:before, +.ion-ios-cloud-done-outline:before, +.ion-ios-cloud-download:before, +.ion-ios-cloud-download-outline:before, +.ion-ios-cloud-outline:before, +.ion-ios-cloud-upload:before, +.ion-ios-cloud-upload-outline:before, +.ion-ios-cloudy:before, +.ion-ios-cloudy-night:before, +.ion-ios-cloudy-night-outline:before, +.ion-ios-cloudy-outline:before, +.ion-ios-code:before, +.ion-ios-code-download:before, +.ion-ios-code-download-outline:before, +.ion-ios-code-outline:before, +.ion-ios-code-working:before, +.ion-ios-code-working-outline:before, +.ion-ios-cog:before, +.ion-ios-cog-outline:before, +.ion-ios-color-fill:before, +.ion-ios-color-fill-outline:before, +.ion-ios-color-filter:before, +.ion-ios-color-filter-outline:before, +.ion-ios-color-palette:before, +.ion-ios-color-palette-outline:before, +.ion-ios-color-wand:before, +.ion-ios-color-wand-outline:before, +.ion-ios-compass:before, +.ion-ios-compass-outline:before, +.ion-ios-construct:before, +.ion-ios-construct-outline:before, +.ion-ios-contact:before, +.ion-ios-contact-outline:before, +.ion-ios-contacts:before, +.ion-ios-contacts-outline:before, +.ion-ios-contract:before, +.ion-ios-contract-outline:before, +.ion-ios-contrast:before, +.ion-ios-contrast-outline:before, +.ion-ios-copy:before, +.ion-ios-copy-outline:before, +.ion-ios-create:before, +.ion-ios-create-outline:before, +.ion-ios-crop:before, +.ion-ios-crop-outline:before, +.ion-ios-cube:before, +.ion-ios-cube-outline:before, +.ion-ios-cut:before, +.ion-ios-cut-outline:before, +.ion-ios-desktop:before, +.ion-ios-desktop-outline:before, +.ion-ios-disc:before, +.ion-ios-disc-outline:before, +.ion-ios-document:before, +.ion-ios-document-outline:before, +.ion-ios-done-all:before, +.ion-ios-done-all-outline:before, +.ion-ios-download:before, +.ion-ios-download-outline:before, +.ion-ios-easel:before, +.ion-ios-easel-outline:before, +.ion-ios-egg:before, +.ion-ios-egg-outline:before, +.ion-ios-exit:before, +.ion-ios-exit-outline:before, +.ion-ios-expand:before, +.ion-ios-expand-outline:before, +.ion-ios-eye:before, +.ion-ios-eye-off:before, +.ion-ios-eye-off-outline:before, +.ion-ios-eye-outline:before, +.ion-ios-fastforward:before, +.ion-ios-fastforward-outline:before, +.ion-ios-female:before, +.ion-ios-female-outline:before, +.ion-ios-filing:before, +.ion-ios-filing-outline:before, +.ion-ios-film:before, +.ion-ios-film-outline:before, +.ion-ios-finger-print:before, +.ion-ios-finger-print-outline:before, +.ion-ios-flag:before, +.ion-ios-flag-outline:before, +.ion-ios-flame:before, +.ion-ios-flame-outline:before, +.ion-ios-flash:before, +.ion-ios-flash-outline:before, +.ion-ios-flask:before, +.ion-ios-flask-outline:before, +.ion-ios-flower:before, +.ion-ios-flower-outline:before, +.ion-ios-folder:before, +.ion-ios-folder-open:before, +.ion-ios-folder-open-outline:before, +.ion-ios-folder-outline:before, +.ion-ios-football:before, +.ion-ios-football-outline:before, +.ion-ios-funnel:before, +.ion-ios-funnel-outline:before, +.ion-ios-game-controller-a:before, +.ion-ios-game-controller-a-outline:before, +.ion-ios-game-controller-b:before, +.ion-ios-game-controller-b-outline:before, +.ion-ios-git-branch:before, +.ion-ios-git-branch-outline:before, +.ion-ios-git-commit:before, +.ion-ios-git-commit-outline:before, +.ion-ios-git-compare:before, +.ion-ios-git-compare-outline:before, +.ion-ios-git-merge:before, +.ion-ios-git-merge-outline:before, +.ion-ios-git-network:before, +.ion-ios-git-network-outline:before, +.ion-ios-git-pull-request:before, +.ion-ios-git-pull-request-outline:before, +.ion-ios-glasses:before, +.ion-ios-glasses-outline:before, +.ion-ios-globe:before, +.ion-ios-globe-outline:before, +.ion-ios-grid:before, +.ion-ios-grid-outline:before, +.ion-ios-hammer:before, +.ion-ios-hammer-outline:before, +.ion-ios-hand:before, +.ion-ios-hand-outline:before, +.ion-ios-happy:before, +.ion-ios-happy-outline:before, +.ion-ios-headset:before, +.ion-ios-headset-outline:before, +.ion-ios-heart:before, +.ion-ios-heart-outline:before, +.ion-ios-help:before, +.ion-ios-help-buoy:before, +.ion-ios-help-buoy-outline:before, +.ion-ios-help-circle:before, +.ion-ios-help-circle-outline:before, +.ion-ios-help-outline:before, +.ion-ios-home:before, +.ion-ios-home-outline:before, +.ion-ios-ice-cream:before, +.ion-ios-ice-cream-outline:before, +.ion-ios-image:before, +.ion-ios-image-outline:before, +.ion-ios-images:before, +.ion-ios-images-outline:before, +.ion-ios-infinite:before, +.ion-ios-infinite-outline:before, +.ion-ios-information:before, +.ion-ios-information-circle:before, +.ion-ios-information-circle-outline:before, +.ion-ios-information-outline:before, +.ion-ios-ionic:before, +.ion-ios-ionic-outline:before, +.ion-ios-ionitron:before, +.ion-ios-ionitron-outline:before, +.ion-ios-jet:before, +.ion-ios-jet-outline:before, +.ion-ios-key:before, +.ion-ios-key-outline:before, +.ion-ios-keypad:before, +.ion-ios-keypad-outline:before, +.ion-ios-laptop:before, +.ion-ios-laptop-outline:before, +.ion-ios-leaf:before, +.ion-ios-leaf-outline:before, +.ion-ios-link:before, +.ion-ios-link-outline:before, +.ion-ios-list:before, +.ion-ios-list-box:before, +.ion-ios-list-box-outline:before, +.ion-ios-list-outline:before, +.ion-ios-locate:before, +.ion-ios-locate-outline:before, +.ion-ios-lock:before, +.ion-ios-lock-outline:before, +.ion-ios-log-in:before, +.ion-ios-log-in-outline:before, +.ion-ios-log-out:before, +.ion-ios-log-out-outline:before, +.ion-ios-magnet:before, +.ion-ios-magnet-outline:before, +.ion-ios-mail:before, +.ion-ios-mail-open:before, +.ion-ios-mail-open-outline:before, +.ion-ios-mail-outline:before, +.ion-ios-male:before, +.ion-ios-male-outline:before, +.ion-ios-man:before, +.ion-ios-man-outline:before, +.ion-ios-map:before, +.ion-ios-map-outline:before, +.ion-ios-medal:before, +.ion-ios-medal-outline:before, +.ion-ios-medical:before, +.ion-ios-medical-outline:before, +.ion-ios-medkit:before, +.ion-ios-medkit-outline:before, +.ion-ios-megaphone:before, +.ion-ios-megaphone-outline:before, +.ion-ios-menu:before, +.ion-ios-menu-outline:before, +.ion-ios-mic:before, +.ion-ios-mic-off:before, +.ion-ios-mic-off-outline:before, +.ion-ios-mic-outline:before, +.ion-ios-microphone:before, +.ion-ios-microphone-outline:before, +.ion-ios-moon:before, +.ion-ios-moon-outline:before, +.ion-ios-more:before, +.ion-ios-more-outline:before, +.ion-ios-move:before, +.ion-ios-move-outline:before, +.ion-ios-musical-note:before, +.ion-ios-musical-note-outline:before, +.ion-ios-musical-notes:before, +.ion-ios-musical-notes-outline:before, +.ion-ios-navigate:before, +.ion-ios-navigate-outline:before, +.ion-ios-no-smoking:before, +.ion-ios-no-smoking-outline:before, +.ion-ios-notifications:before, +.ion-ios-notifications-off:before, +.ion-ios-notifications-off-outline:before, +.ion-ios-notifications-outline:before, +.ion-ios-nuclear:before, +.ion-ios-nuclear-outline:before, +.ion-ios-nutrition:before, +.ion-ios-nutrition-outline:before, +.ion-ios-open:before, +.ion-ios-open-outline:before, +.ion-ios-options:before, +.ion-ios-options-outline:before, +.ion-ios-outlet:before, +.ion-ios-outlet-outline:before, +.ion-ios-paper:before, +.ion-ios-paper-outline:before, +.ion-ios-paper-plane:before, +.ion-ios-paper-plane-outline:before, +.ion-ios-partly-sunny:before, +.ion-ios-partly-sunny-outline:before, +.ion-ios-pause:before, +.ion-ios-pause-outline:before, +.ion-ios-paw:before, +.ion-ios-paw-outline:before, +.ion-ios-people:before, +.ion-ios-people-outline:before, +.ion-ios-person:before, +.ion-ios-person-add:before, +.ion-ios-person-add-outline:before, +.ion-ios-person-outline:before, +.ion-ios-phone-landscape:before, +.ion-ios-phone-landscape-outline:before, +.ion-ios-phone-portrait:before, +.ion-ios-phone-portrait-outline:before, +.ion-ios-photos:before, +.ion-ios-photos-outline:before, +.ion-ios-pie:before, +.ion-ios-pie-outline:before, +.ion-ios-pin:before, +.ion-ios-pin-outline:before, +.ion-ios-pint:before, +.ion-ios-pint-outline:before, +.ion-ios-pizza:before, +.ion-ios-pizza-outline:before, +.ion-ios-plane:before, +.ion-ios-plane-outline:before, +.ion-ios-planet:before, +.ion-ios-planet-outline:before, +.ion-ios-play:before, +.ion-ios-play-outline:before, +.ion-ios-podium:before, +.ion-ios-podium-outline:before, +.ion-ios-power:before, +.ion-ios-power-outline:before, +.ion-ios-pricetag:before, +.ion-ios-pricetag-outline:before, +.ion-ios-pricetags:before, +.ion-ios-pricetags-outline:before, +.ion-ios-print:before, +.ion-ios-print-outline:before, +.ion-ios-pulse:before, +.ion-ios-pulse-outline:before, +.ion-ios-qr-scanner:before, +.ion-ios-qr-scanner-outline:before, +.ion-ios-quote:before, +.ion-ios-quote-outline:before, +.ion-ios-radio:before, +.ion-ios-radio-button-off:before, +.ion-ios-radio-button-off-outline:before, +.ion-ios-radio-button-on:before, +.ion-ios-radio-button-on-outline:before, +.ion-ios-radio-outline:before, +.ion-ios-rainy:before, +.ion-ios-rainy-outline:before, +.ion-ios-recording:before, +.ion-ios-recording-outline:before, +.ion-ios-redo:before, +.ion-ios-redo-outline:before, +.ion-ios-refresh:before, +.ion-ios-refresh-circle:before, +.ion-ios-refresh-circle-outline:before, +.ion-ios-refresh-outline:before, +.ion-ios-remove:before, +.ion-ios-remove-circle:before, +.ion-ios-remove-circle-outline:before, +.ion-ios-remove-outline:before, +.ion-ios-reorder:before, +.ion-ios-reorder-outline:before, +.ion-ios-repeat:before, +.ion-ios-repeat-outline:before, +.ion-ios-resize:before, +.ion-ios-resize-outline:before, +.ion-ios-restaurant:before, +.ion-ios-restaurant-outline:before, +.ion-ios-return-left:before, +.ion-ios-return-left-outline:before, +.ion-ios-return-right:before, +.ion-ios-return-right-outline:before, +.ion-ios-reverse-camera:before, +.ion-ios-reverse-camera-outline:before, +.ion-ios-rewind:before, +.ion-ios-rewind-outline:before, +.ion-ios-ribbon:before, +.ion-ios-ribbon-outline:before, +.ion-ios-rose:before, +.ion-ios-rose-outline:before, +.ion-ios-sad:before, +.ion-ios-sad-outline:before, +.ion-ios-school:before, +.ion-ios-school-outline:before, +.ion-ios-search:before, +.ion-ios-search-outline:before, +.ion-ios-send:before, +.ion-ios-send-outline:before, +.ion-ios-settings:before, +.ion-ios-settings-outline:before, +.ion-ios-share:before, +.ion-ios-share-alt:before, +.ion-ios-share-alt-outline:before, +.ion-ios-share-outline:before, +.ion-ios-shirt:before, +.ion-ios-shirt-outline:before, +.ion-ios-shuffle:before, +.ion-ios-shuffle-outline:before, +.ion-ios-skip-backward:before, +.ion-ios-skip-backward-outline:before, +.ion-ios-skip-forward:before, +.ion-ios-skip-forward-outline:before, +.ion-ios-snow:before, +.ion-ios-snow-outline:before, +.ion-ios-speedometer:before, +.ion-ios-speedometer-outline:before, +.ion-ios-square:before, +.ion-ios-square-outline:before, +.ion-ios-star:before, +.ion-ios-star-half:before, +.ion-ios-star-half-outline:before, +.ion-ios-star-outline:before, +.ion-ios-stats:before, +.ion-ios-stats-outline:before, +.ion-ios-stopwatch:before, +.ion-ios-stopwatch-outline:before, +.ion-ios-subway:before, +.ion-ios-subway-outline:before, +.ion-ios-sunny:before, +.ion-ios-sunny-outline:before, +.ion-ios-swap:before, +.ion-ios-swap-outline:before, +.ion-ios-switch:before, +.ion-ios-switch-outline:before, +.ion-ios-sync:before, +.ion-ios-sync-outline:before, +.ion-ios-tablet-landscape:before, +.ion-ios-tablet-landscape-outline:before, +.ion-ios-tablet-portrait:before, +.ion-ios-tablet-portrait-outline:before, +.ion-ios-tennisball:before, +.ion-ios-tennisball-outline:before, +.ion-ios-text:before, +.ion-ios-text-outline:before, +.ion-ios-thermometer:before, +.ion-ios-thermometer-outline:before, +.ion-ios-thumbs-down:before, +.ion-ios-thumbs-down-outline:before, +.ion-ios-thumbs-up:before, +.ion-ios-thumbs-up-outline:before, +.ion-ios-thunderstorm:before, +.ion-ios-thunderstorm-outline:before, +.ion-ios-time:before, +.ion-ios-time-outline:before, +.ion-ios-timer:before, +.ion-ios-timer-outline:before, +.ion-ios-train:before, +.ion-ios-train-outline:before, +.ion-ios-transgender:before, +.ion-ios-transgender-outline:before, +.ion-ios-trash:before, +.ion-ios-trash-outline:before, +.ion-ios-trending-down:before, +.ion-ios-trending-down-outline:before, +.ion-ios-trending-up:before, +.ion-ios-trending-up-outline:before, +.ion-ios-trophy:before, +.ion-ios-trophy-outline:before, +.ion-ios-umbrella:before, +.ion-ios-umbrella-outline:before, +.ion-ios-undo:before, +.ion-ios-undo-outline:before, +.ion-ios-unlock:before, +.ion-ios-unlock-outline:before, +.ion-ios-videocam:before, +.ion-ios-videocam-outline:before, +.ion-ios-volume-down:before, +.ion-ios-volume-down-outline:before, +.ion-ios-volume-mute:before, +.ion-ios-volume-mute-outline:before, +.ion-ios-volume-off:before, +.ion-ios-volume-off-outline:before, +.ion-ios-volume-up:before, +.ion-ios-volume-up-outline:before, +.ion-ios-walk:before, +.ion-ios-walk-outline:before, +.ion-ios-warning:before, +.ion-ios-warning-outline:before, +.ion-ios-watch:before, +.ion-ios-watch-outline:before, +.ion-ios-water:before, +.ion-ios-water-outline:before, +.ion-ios-wifi:before, +.ion-ios-wifi-outline:before, +.ion-ios-wine:before, +.ion-ios-wine-outline:before, +.ion-ios-woman:before, +.ion-ios-woman-outline:before, +.ion-logo-android:before, +.ion-logo-angular:before, +.ion-logo-apple:before, +.ion-logo-bitcoin:before, +.ion-logo-buffer:before, +.ion-logo-chrome:before, +.ion-logo-codepen:before, +.ion-logo-css3:before, +.ion-logo-designernews:before, +.ion-logo-dribbble:before, +.ion-logo-dropbox:before, +.ion-logo-euro:before, +.ion-logo-facebook:before, +.ion-logo-foursquare:before, +.ion-logo-freebsd-devil:before, +.ion-logo-github:before, +.ion-logo-google:before, +.ion-logo-googleplus:before, +.ion-logo-hackernews:before, +.ion-logo-html5:before, +.ion-logo-instagram:before, +.ion-logo-javascript:before, +.ion-logo-linkedin:before, +.ion-logo-markdown:before, +.ion-logo-nodejs:before, +.ion-logo-octocat:before, +.ion-logo-pinterest:before, +.ion-logo-playstation:before, +.ion-logo-python:before, +.ion-logo-reddit:before, +.ion-logo-rss:before, +.ion-logo-sass:before, +.ion-logo-skype:before, +.ion-logo-snapchat:before, +.ion-logo-steam:before, +.ion-logo-tumblr:before, +.ion-logo-tux:before, +.ion-logo-twitch:before, +.ion-logo-twitter:before, +.ion-logo-usd:before, +.ion-logo-vimeo:before, +.ion-logo-whatsapp:before, +.ion-logo-windows:before, +.ion-logo-wordpress:before, +.ion-logo-xbox:before, +.ion-logo-yahoo:before, +.ion-logo-yen:before, +.ion-logo-youtube:before, +.ion-md-add:before, +.ion-md-add-circle:before, +.ion-md-alarm:before, +.ion-md-albums:before, +.ion-md-alert:before, +.ion-md-american-football:before, +.ion-md-analytics:before, +.ion-md-aperture:before, +.ion-md-apps:before, +.ion-md-appstore:before, +.ion-md-archive:before, +.ion-md-arrow-back:before, +.ion-md-arrow-down:before, +.ion-md-arrow-dropdown:before, +.ion-md-arrow-dropdown-circle:before, +.ion-md-arrow-dropleft:before, +.ion-md-arrow-dropleft-circle:before, +.ion-md-arrow-dropright:before, +.ion-md-arrow-dropright-circle:before, +.ion-md-arrow-dropup:before, +.ion-md-arrow-dropup-circle:before, +.ion-md-arrow-forward:before, +.ion-md-arrow-round-back:before, +.ion-md-arrow-round-down:before, +.ion-md-arrow-round-forward:before, +.ion-md-arrow-round-up:before, +.ion-md-arrow-up:before, +.ion-md-at:before, +.ion-md-attach:before, +.ion-md-backspace:before, +.ion-md-barcode:before, +.ion-md-baseball:before, +.ion-md-basket:before, +.ion-md-basketball:before, +.ion-md-battery-charging:before, +.ion-md-battery-dead:before, +.ion-md-battery-full:before, +.ion-md-beaker:before, +.ion-md-beer:before, +.ion-md-bicycle:before, +.ion-md-bluetooth:before, +.ion-md-boat:before, +.ion-md-body:before, +.ion-md-bonfire:before, +.ion-md-book:before, +.ion-md-bookmark:before, +.ion-md-bookmarks:before, +.ion-md-bowtie:before, +.ion-md-briefcase:before, +.ion-md-browsers:before, +.ion-md-brush:before, +.ion-md-bug:before, +.ion-md-build:before, +.ion-md-bulb:before, +.ion-md-bus:before, +.ion-md-cafe:before, +.ion-md-calculator:before, +.ion-md-calendar:before, +.ion-md-call:before, +.ion-md-camera:before, +.ion-md-car:before, +.ion-md-card:before, +.ion-md-cart:before, +.ion-md-cash:before, +.ion-md-chatboxes:before, +.ion-md-chatbubbles:before, +.ion-md-checkbox:before, +.ion-md-checkbox-outline:before, +.ion-md-checkmark:before, +.ion-md-checkmark-circle:before, +.ion-md-checkmark-circle-outline:before, +.ion-md-clipboard:before, +.ion-md-clock:before, +.ion-md-close:before, +.ion-md-close-circle:before, +.ion-md-closed-captioning:before, +.ion-md-cloud:before, +.ion-md-cloud-circle:before, +.ion-md-cloud-done:before, +.ion-md-cloud-download:before, +.ion-md-cloud-outline:before, +.ion-md-cloud-upload:before, +.ion-md-cloudy:before, +.ion-md-cloudy-night:before, +.ion-md-code:before, +.ion-md-code-download:before, +.ion-md-code-working:before, +.ion-md-cog:before, +.ion-md-color-fill:before, +.ion-md-color-filter:before, +.ion-md-color-palette:before, +.ion-md-color-wand:before, +.ion-md-compass:before, +.ion-md-construct:before, +.ion-md-contact:before, +.ion-md-contacts:before, +.ion-md-contract:before, +.ion-md-contrast:before, +.ion-md-copy:before, +.ion-md-create:before, +.ion-md-crop:before, +.ion-md-cube:before, +.ion-md-cut:before, +.ion-md-desktop:before, +.ion-md-disc:before, +.ion-md-document:before, +.ion-md-done-all:before, +.ion-md-download:before, +.ion-md-easel:before, +.ion-md-egg:before, +.ion-md-exit:before, +.ion-md-expand:before, +.ion-md-eye:before, +.ion-md-eye-off:before, +.ion-md-fastforward:before, +.ion-md-female:before, +.ion-md-filing:before, +.ion-md-film:before, +.ion-md-finger-print:before, +.ion-md-flag:before, +.ion-md-flame:before, +.ion-md-flash:before, +.ion-md-flask:before, +.ion-md-flower:before, +.ion-md-folder:before, +.ion-md-folder-open:before, +.ion-md-football:before, +.ion-md-funnel:before, +.ion-md-game-controller-a:before, +.ion-md-game-controller-b:before, +.ion-md-git-branch:before, +.ion-md-git-commit:before, +.ion-md-git-compare:before, +.ion-md-git-merge:before, +.ion-md-git-network:before, +.ion-md-git-pull-request:before, +.ion-md-glasses:before, +.ion-md-globe:before, +.ion-md-grid:before, +.ion-md-hammer:before, +.ion-md-hand:before, +.ion-md-happy:before, +.ion-md-headset:before, +.ion-md-heart:before, +.ion-md-heart-outline:before, +.ion-md-help:before, +.ion-md-help-buoy:before, +.ion-md-help-circle:before, +.ion-md-home:before, +.ion-md-ice-cream:before, +.ion-md-image:before, +.ion-md-images:before, +.ion-md-infinite:before, +.ion-md-information:before, +.ion-md-information-circle:before, +.ion-md-ionic:before, +.ion-md-ionitron:before, +.ion-md-jet:before, +.ion-md-key:before, +.ion-md-keypad:before, +.ion-md-laptop:before, +.ion-md-leaf:before, +.ion-md-link:before, +.ion-md-list:before, +.ion-md-list-box:before, +.ion-md-locate:before, +.ion-md-lock:before, +.ion-md-log-in:before, +.ion-md-log-out:before, +.ion-md-magnet:before, +.ion-md-mail:before, +.ion-md-mail-open:before, +.ion-md-male:before, +.ion-md-man:before, +.ion-md-map:before, +.ion-md-medal:before, +.ion-md-medical:before, +.ion-md-medkit:before, +.ion-md-megaphone:before, +.ion-md-menu:before, +.ion-md-mic:before, +.ion-md-mic-off:before, +.ion-md-microphone:before, +.ion-md-moon:before, +.ion-md-more:before, +.ion-md-move:before, +.ion-md-musical-note:before, +.ion-md-musical-notes:before, +.ion-md-navigate:before, +.ion-md-no-smoking:before, +.ion-md-notifications:before, +.ion-md-notifications-off:before, +.ion-md-notifications-outline:before, +.ion-md-nuclear:before, +.ion-md-nutrition:before, +.ion-md-open:before, +.ion-md-options:before, +.ion-md-outlet:before, +.ion-md-paper:before, +.ion-md-paper-plane:before, +.ion-md-partly-sunny:before, +.ion-md-pause:before, +.ion-md-paw:before, +.ion-md-people:before, +.ion-md-person:before, +.ion-md-person-add:before, +.ion-md-phone-landscape:before, +.ion-md-phone-portrait:before, +.ion-md-photos:before, +.ion-md-pie:before, +.ion-md-pin:before, +.ion-md-pint:before, +.ion-md-pizza:before, +.ion-md-plane:before, +.ion-md-planet:before, +.ion-md-play:before, +.ion-md-podium:before, +.ion-md-power:before, +.ion-md-pricetag:before, +.ion-md-pricetags:before, +.ion-md-print:before, +.ion-md-pulse:before, +.ion-md-qr-scanner:before, +.ion-md-quote:before, +.ion-md-radio:before, +.ion-md-radio-button-off:before, +.ion-md-radio-button-on:before, +.ion-md-rainy:before, +.ion-md-recording:before, +.ion-md-redo:before, +.ion-md-refresh:before, +.ion-md-refresh-circle:before, +.ion-md-remove:before, +.ion-md-remove-circle:before, +.ion-md-reorder:before, +.ion-md-repeat:before, +.ion-md-resize:before, +.ion-md-restaurant:before, +.ion-md-return-left:before, +.ion-md-return-right:before, +.ion-md-reverse-camera:before, +.ion-md-rewind:before, +.ion-md-ribbon:before, +.ion-md-rose:before, +.ion-md-sad:before, +.ion-md-school:before, +.ion-md-search:before, +.ion-md-send:before, +.ion-md-settings:before, +.ion-md-share:before, +.ion-md-share-alt:before, +.ion-md-shirt:before, +.ion-md-shuffle:before, +.ion-md-skip-backward:before, +.ion-md-skip-forward:before, +.ion-md-snow:before, +.ion-md-speedometer:before, +.ion-md-square:before, +.ion-md-square-outline:before, +.ion-md-star:before, +.ion-md-star-half:before, +.ion-md-star-outline:before, +.ion-md-stats:before, +.ion-md-stopwatch:before, +.ion-md-subway:before, +.ion-md-sunny:before, +.ion-md-swap:before, +.ion-md-switch:before, +.ion-md-sync:before, +.ion-md-tablet-landscape:before, +.ion-md-tablet-portrait:before, +.ion-md-tennisball:before, +.ion-md-text:before, +.ion-md-thermometer:before, +.ion-md-thumbs-down:before, +.ion-md-thumbs-up:before, +.ion-md-thunderstorm:before, +.ion-md-time:before, +.ion-md-timer:before, +.ion-md-train:before, +.ion-md-transgender:before, +.ion-md-trash:before, +.ion-md-trending-down:before, +.ion-md-trending-up:before, +.ion-md-trophy:before, +.ion-md-umbrella:before, +.ion-md-undo:before, +.ion-md-unlock:before, +.ion-md-videocam:before, +.ion-md-volume-down:before, +.ion-md-volume-mute:before, +.ion-md-volume-off:before, +.ion-md-volume-up:before, +.ion-md-walk:before, +.ion-md-warning:before, +.ion-md-watch:before, +.ion-md-water:before, +.ion-md-wifi:before, +.ion-md-wine:before, +.ion-md-woman:before { + display: inline-block; + font-family: "Ionicons"; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + text-rendering: auto; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.ion-ios-add:before { + content: "\f102"; +} + +.ion-ios-add-circle:before { + content: "\f101"; +} + +.ion-ios-add-circle-outline:before { + content: "\f100"; +} + +.ion-ios-add-outline:before { + content: "\f102"; +} + +.ion-ios-alarm:before { + content: "\f3c8"; +} + +.ion-ios-alarm-outline:before { + content: "\f3c7"; +} + +.ion-ios-albums:before { + content: "\f3ca"; +} + +.ion-ios-albums-outline:before { + content: "\f3c9"; +} + +.ion-ios-alert:before { + content: "\f104"; +} + +.ion-ios-alert-outline:before { + content: "\f103"; +} + +.ion-ios-american-football:before { + content: "\f106"; +} + +.ion-ios-american-football-outline:before { + content: "\f105"; +} + +.ion-ios-analytics:before { + content: "\f3ce"; +} + +.ion-ios-analytics-outline:before { + content: "\f3cd"; +} + +.ion-ios-aperture:before { + content: "\f108"; +} + +.ion-ios-aperture-outline:before { + content: "\f107"; +} + +.ion-ios-apps:before { + content: "\f10a"; +} + +.ion-ios-apps-outline:before { + content: "\f109"; +} + +.ion-ios-appstore:before { + content: "\f10c"; +} + +.ion-ios-appstore-outline:before { + content: "\f10b"; +} + +.ion-ios-archive:before { + content: "\f10e"; +} + +.ion-ios-archive-outline:before { + content: "\f10d"; +} + +.ion-ios-arrow-back:before { + content: "\f3cf"; +} + +.ion-ios-arrow-back-outline:before { + content: "\f3cf"; +} + +.ion-ios-arrow-down:before { + content: "\f3d0"; +} + +.ion-ios-arrow-down-outline:before { + content: "\f3d0"; +} + +.ion-ios-arrow-dropdown:before { + content: "\f110"; +} + +.ion-ios-arrow-dropdown-circle:before { + content: "\f10f"; +} + +.ion-ios-arrow-dropdown-circle-outline:before { + content: "\f10f"; +} + +.ion-ios-arrow-dropdown-outline:before { + content: "\f110"; +} + +.ion-ios-arrow-dropleft:before { + content: "\f112"; +} + +.ion-ios-arrow-dropleft-circle:before { + content: "\f111"; +} + +.ion-ios-arrow-dropleft-circle-outline:before { + content: "\f111"; +} + +.ion-ios-arrow-dropleft-outline:before { + content: "\f112"; +} + +.ion-ios-arrow-dropright:before { + content: "\f114"; +} + +.ion-ios-arrow-dropright-circle:before { + content: "\f113"; +} + +.ion-ios-arrow-dropright-circle-outline:before { + content: "\f113"; +} + +.ion-ios-arrow-dropright-outline:before { + content: "\f114"; +} + +.ion-ios-arrow-dropup:before { + content: "\f116"; +} + +.ion-ios-arrow-dropup-circle:before { + content: "\f115"; +} + +.ion-ios-arrow-dropup-circle-outline:before { + content: "\f115"; +} + +.ion-ios-arrow-dropup-outline:before { + content: "\f116"; +} + +.ion-ios-arrow-forward:before { + content: "\f3d1"; +} + +.ion-ios-arrow-forward-outline:before { + content: "\f3d1"; +} + +.ion-ios-arrow-round-back:before { + content: "\f117"; +} + +.ion-ios-arrow-round-back-outline:before { + content: "\f117"; +} + +.ion-ios-arrow-round-down:before { + content: "\f118"; +} + +.ion-ios-arrow-round-down-outline:before { + content: "\f118"; +} + +.ion-ios-arrow-round-forward:before { + content: "\f119"; +} + +.ion-ios-arrow-round-forward-outline:before { + content: "\f119"; +} + +.ion-ios-arrow-round-up:before { + content: "\f11a"; +} + +.ion-ios-arrow-round-up-outline:before { + content: "\f11a"; +} + +.ion-ios-arrow-up:before { + content: "\f3d8"; +} + +.ion-ios-arrow-up-outline:before { + content: "\f3d8"; +} + +.ion-ios-at:before { + content: "\f3da"; +} + +.ion-ios-at-outline:before { + content: "\f3d9"; +} + +.ion-ios-attach:before { + content: "\f11b"; +} + +.ion-ios-attach-outline:before { + content: "\f11b"; +} + +.ion-ios-backspace:before { + content: "\f11d"; +} + +.ion-ios-backspace-outline:before { + content: "\f11c"; +} + +.ion-ios-barcode:before { + content: "\f3dc"; +} + +.ion-ios-barcode-outline:before { + content: "\f3db"; +} + +.ion-ios-baseball:before { + content: "\f3de"; +} + +.ion-ios-baseball-outline:before { + content: "\f3dd"; +} + +.ion-ios-basket:before { + content: "\f11f"; +} + +.ion-ios-basket-outline:before { + content: "\f11e"; +} + +.ion-ios-basketball:before { + content: "\f3e0"; +} + +.ion-ios-basketball-outline:before { + content: "\f3df"; +} + +.ion-ios-battery-charging:before { + content: "\f120"; +} + +.ion-ios-battery-charging-outline:before { + content: "\f120"; +} + +.ion-ios-battery-dead:before { + content: "\f121"; +} + +.ion-ios-battery-dead-outline:before { + content: "\f121"; +} + +.ion-ios-battery-full:before { + content: "\f122"; +} + +.ion-ios-battery-full-outline:before { + content: "\f122"; +} + +.ion-ios-beaker:before { + content: "\f124"; +} + +.ion-ios-beaker-outline:before { + content: "\f123"; +} + +.ion-ios-beer:before { + content: "\f126"; +} + +.ion-ios-beer-outline:before { + content: "\f125"; +} + +.ion-ios-bicycle:before { + content: "\f127"; +} + +.ion-ios-bicycle-outline:before { + content: "\f127"; +} + +.ion-ios-bluetooth:before { + content: "\f128"; +} + +.ion-ios-bluetooth-outline:before { + content: "\f128"; +} + +.ion-ios-boat:before { + content: "\f12a"; +} + +.ion-ios-boat-outline:before { + content: "\f129"; +} + +.ion-ios-body:before { + content: "\f3e4"; +} + +.ion-ios-body-outline:before { + content: "\f3e3"; +} + +.ion-ios-bonfire:before { + content: "\f12c"; +} + +.ion-ios-bonfire-outline:before { + content: "\f12b"; +} + +.ion-ios-book:before { + content: "\f3e8"; +} + +.ion-ios-book-outline:before { + content: "\f3e7"; +} + +.ion-ios-bookmark:before { + content: "\f12e"; +} + +.ion-ios-bookmark-outline:before { + content: "\f12d"; +} + +.ion-ios-bookmarks:before { + content: "\f3ea"; +} + +.ion-ios-bookmarks-outline:before { + content: "\f3e9"; +} + +.ion-ios-bowtie:before { + content: "\f130"; +} + +.ion-ios-bowtie-outline:before { + content: "\f12f"; +} + +.ion-ios-briefcase:before { + content: "\f3ee"; +} + +.ion-ios-briefcase-outline:before { + content: "\f3ed"; +} + +.ion-ios-browsers:before { + content: "\f3f0"; +} + +.ion-ios-browsers-outline:before { + content: "\f3ef"; +} + +.ion-ios-brush:before { + content: "\f132"; +} + +.ion-ios-brush-outline:before { + content: "\f131"; +} + +.ion-ios-bug:before { + content: "\f134"; +} + +.ion-ios-bug-outline:before { + content: "\f133"; +} + +.ion-ios-build:before { + content: "\f136"; +} + +.ion-ios-build-outline:before { + content: "\f135"; +} + +.ion-ios-bulb:before { + content: "\f138"; +} + +.ion-ios-bulb-outline:before { + content: "\f137"; +} + +.ion-ios-bus:before { + content: "\f13a"; +} + +.ion-ios-bus-outline:before { + content: "\f139"; +} + +.ion-ios-cafe:before { + content: "\f13c"; +} + +.ion-ios-cafe-outline:before { + content: "\f13b"; +} + +.ion-ios-calculator:before { + content: "\f3f2"; +} + +.ion-ios-calculator-outline:before { + content: "\f3f1"; +} + +.ion-ios-calendar:before { + content: "\f3f4"; +} + +.ion-ios-calendar-outline:before { + content: "\f3f3"; +} + +.ion-ios-call:before { + content: "\f13e"; +} + +.ion-ios-call-outline:before { + content: "\f13d"; +} + +.ion-ios-camera:before { + content: "\f3f6"; +} + +.ion-ios-camera-outline:before { + content: "\f3f5"; +} + +.ion-ios-car:before { + content: "\f140"; +} + +.ion-ios-car-outline:before { + content: "\f13f"; +} + +.ion-ios-card:before { + content: "\f142"; +} + +.ion-ios-card-outline:before { + content: "\f141"; +} + +.ion-ios-cart:before { + content: "\f3f8"; +} + +.ion-ios-cart-outline:before { + content: "\f3f7"; +} + +.ion-ios-cash:before { + content: "\f144"; +} + +.ion-ios-cash-outline:before { + content: "\f143"; +} + +.ion-ios-chatboxes:before { + content: "\f3fa"; +} + +.ion-ios-chatboxes-outline:before { + content: "\f3f9"; +} + +.ion-ios-chatbubbles:before { + content: "\f146"; +} + +.ion-ios-chatbubbles-outline:before { + content: "\f145"; +} + +.ion-ios-checkbox:before { + content: "\f148"; +} + +.ion-ios-checkbox-outline:before { + content: "\f147"; +} + +.ion-ios-checkmark:before { + content: "\f3ff"; +} + +.ion-ios-checkmark-circle:before { + content: "\f14a"; +} + +.ion-ios-checkmark-circle-outline:before { + content: "\f149"; +} + +.ion-ios-checkmark-outline:before { + content: "\f3ff"; +} + +.ion-ios-clipboard:before { + content: "\f14c"; +} + +.ion-ios-clipboard-outline:before { + content: "\f14b"; +} + +.ion-ios-clock:before { + content: "\f403"; +} + +.ion-ios-clock-outline:before { + content: "\f402"; +} + +.ion-ios-close:before { + content: "\f406"; +} + +.ion-ios-close-circle:before { + content: "\f14e"; +} + +.ion-ios-close-circle-outline:before { + content: "\f14d"; +} + +.ion-ios-close-outline:before { + content: "\f406"; +} + +.ion-ios-closed-captioning:before { + content: "\f150"; +} + +.ion-ios-closed-captioning-outline:before { + content: "\f14f"; +} + +.ion-ios-cloud:before { + content: "\f40c"; +} + +.ion-ios-cloud-circle:before { + content: "\f152"; +} + +.ion-ios-cloud-circle-outline:before { + content: "\f151"; +} + +.ion-ios-cloud-done:before { + content: "\f154"; +} + +.ion-ios-cloud-done-outline:before { + content: "\f153"; +} + +.ion-ios-cloud-download:before { + content: "\f408"; +} + +.ion-ios-cloud-download-outline:before { + content: "\f407"; +} + +.ion-ios-cloud-outline:before { + content: "\f409"; +} + +.ion-ios-cloud-upload:before { + content: "\f40b"; +} + +.ion-ios-cloud-upload-outline:before { + content: "\f40a"; +} + +.ion-ios-cloudy:before { + content: "\f410"; +} + +.ion-ios-cloudy-night:before { + content: "\f40e"; +} + +.ion-ios-cloudy-night-outline:before { + content: "\f40d"; +} + +.ion-ios-cloudy-outline:before { + content: "\f40f"; +} + +.ion-ios-code:before { + content: "\f157"; +} + +.ion-ios-code-download:before { + content: "\f155"; +} + +.ion-ios-code-download-outline:before { + content: "\f155"; +} + +.ion-ios-code-outline:before { + content: "\f157"; +} + +.ion-ios-code-working:before { + content: "\f156"; +} + +.ion-ios-code-working-outline:before { + content: "\f156"; +} + +.ion-ios-cog:before { + content: "\f412"; +} + +.ion-ios-cog-outline:before { + content: "\f411"; +} + +.ion-ios-color-fill:before { + content: "\f159"; +} + +.ion-ios-color-fill-outline:before { + content: "\f158"; +} + +.ion-ios-color-filter:before { + content: "\f414"; +} + +.ion-ios-color-filter-outline:before { + content: "\f413"; +} + +.ion-ios-color-palette:before { + content: "\f15b"; +} + +.ion-ios-color-palette-outline:before { + content: "\f15a"; +} + +.ion-ios-color-wand:before { + content: "\f416"; +} + +.ion-ios-color-wand-outline:before { + content: "\f415"; +} + +.ion-ios-compass:before { + content: "\f15d"; +} + +.ion-ios-compass-outline:before { + content: "\f15c"; +} + +.ion-ios-construct:before { + content: "\f15f"; +} + +.ion-ios-construct-outline:before { + content: "\f15e"; +} + +.ion-ios-contact:before { + content: "\f41a"; +} + +.ion-ios-contact-outline:before { + content: "\f419"; +} + +.ion-ios-contacts:before { + content: "\f161"; +} + +.ion-ios-contacts-outline:before { + content: "\f160"; +} + +.ion-ios-contract:before { + content: "\f162"; +} + +.ion-ios-contract-outline:before { + content: "\f162"; +} + +.ion-ios-contrast:before { + content: "\f163"; +} + +.ion-ios-contrast-outline:before { + content: "\f163"; +} + +.ion-ios-copy:before { + content: "\f41c"; +} + +.ion-ios-copy-outline:before { + content: "\f41b"; +} + +.ion-ios-create:before { + content: "\f165"; +} + +.ion-ios-create-outline:before { + content: "\f164"; +} + +.ion-ios-crop:before { + content: "\f41e"; +} + +.ion-ios-crop-outline:before { + content: "\f166"; +} + +.ion-ios-cube:before { + content: "\f168"; +} + +.ion-ios-cube-outline:before { + content: "\f167"; +} + +.ion-ios-cut:before { + content: "\f16a"; +} + +.ion-ios-cut-outline:before { + content: "\f169"; +} + +.ion-ios-desktop:before { + content: "\f16c"; +} + +.ion-ios-desktop-outline:before { + content: "\f16b"; +} + +.ion-ios-disc:before { + content: "\f16e"; +} + +.ion-ios-disc-outline:before { + content: "\f16d"; +} + +.ion-ios-document:before { + content: "\f170"; +} + +.ion-ios-document-outline:before { + content: "\f16f"; +} + +.ion-ios-done-all:before { + content: "\f171"; +} + +.ion-ios-done-all-outline:before { + content: "\f171"; +} + +.ion-ios-download:before { + content: "\f420"; +} + +.ion-ios-download-outline:before { + content: "\f41f"; +} + +.ion-ios-easel:before { + content: "\f173"; +} + +.ion-ios-easel-outline:before { + content: "\f172"; +} + +.ion-ios-egg:before { + content: "\f175"; +} + +.ion-ios-egg-outline:before { + content: "\f174"; +} + +.ion-ios-exit:before { + content: "\f177"; +} + +.ion-ios-exit-outline:before { + content: "\f176"; +} + +.ion-ios-expand:before { + content: "\f178"; +} + +.ion-ios-expand-outline:before { + content: "\f178"; +} + +.ion-ios-eye:before { + content: "\f425"; +} + +.ion-ios-eye-off:before { + content: "\f17a"; +} + +.ion-ios-eye-off-outline:before { + content: "\f179"; +} + +.ion-ios-eye-outline:before { + content: "\f424"; +} + +.ion-ios-fastforward:before { + content: "\f427"; +} + +.ion-ios-fastforward-outline:before { + content: "\f426"; +} + +.ion-ios-female:before { + content: "\f17b"; +} + +.ion-ios-female-outline:before { + content: "\f17b"; +} + +.ion-ios-filing:before { + content: "\f429"; +} + +.ion-ios-filing-outline:before { + content: "\f428"; +} + +.ion-ios-film:before { + content: "\f42b"; +} + +.ion-ios-film-outline:before { + content: "\f42a"; +} + +.ion-ios-finger-print:before { + content: "\f17c"; +} + +.ion-ios-finger-print-outline:before { + content: "\f17c"; +} + +.ion-ios-flag:before { + content: "\f42d"; +} + +.ion-ios-flag-outline:before { + content: "\f42c"; +} + +.ion-ios-flame:before { + content: "\f42f"; +} + +.ion-ios-flame-outline:before { + content: "\f42e"; +} + +.ion-ios-flash:before { + content: "\f17e"; +} + +.ion-ios-flash-outline:before { + content: "\f17d"; +} + +.ion-ios-flask:before { + content: "\f431"; +} + +.ion-ios-flask-outline:before { + content: "\f430"; +} + +.ion-ios-flower:before { + content: "\f433"; +} + +.ion-ios-flower-outline:before { + content: "\f432"; +} + +.ion-ios-folder:before { + content: "\f435"; +} + +.ion-ios-folder-open:before { + content: "\f180"; +} + +.ion-ios-folder-open-outline:before { + content: "\f17f"; +} + +.ion-ios-folder-outline:before { + content: "\f434"; +} + +.ion-ios-football:before { + content: "\f437"; +} + +.ion-ios-football-outline:before { + content: "\f436"; +} + +.ion-ios-funnel:before { + content: "\f182"; +} + +.ion-ios-funnel-outline:before { + content: "\f181"; +} + +.ion-ios-game-controller-a:before { + content: "\f439"; +} + +.ion-ios-game-controller-a-outline:before { + content: "\f438"; +} + +.ion-ios-game-controller-b:before { + content: "\f43b"; +} + +.ion-ios-game-controller-b-outline:before { + content: "\f43a"; +} + +.ion-ios-git-branch:before { + content: "\f183"; +} + +.ion-ios-git-branch-outline:before { + content: "\f183"; +} + +.ion-ios-git-commit:before { + content: "\f184"; +} + +.ion-ios-git-commit-outline:before { + content: "\f184"; +} + +.ion-ios-git-compare:before { + content: "\f185"; +} + +.ion-ios-git-compare-outline:before { + content: "\f185"; +} + +.ion-ios-git-merge:before { + content: "\f186"; +} + +.ion-ios-git-merge-outline:before { + content: "\f186"; +} + +.ion-ios-git-network:before { + content: "\f187"; +} + +.ion-ios-git-network-outline:before { + content: "\f187"; +} + +.ion-ios-git-pull-request:before { + content: "\f188"; +} + +.ion-ios-git-pull-request-outline:before { + content: "\f188"; +} + +.ion-ios-glasses:before { + content: "\f43f"; +} + +.ion-ios-glasses-outline:before { + content: "\f43e"; +} + +.ion-ios-globe:before { + content: "\f18a"; +} + +.ion-ios-globe-outline:before { + content: "\f189"; +} + +.ion-ios-grid:before { + content: "\f18c"; +} + +.ion-ios-grid-outline:before { + content: "\f18b"; +} + +.ion-ios-hammer:before { + content: "\f18e"; +} + +.ion-ios-hammer-outline:before { + content: "\f18d"; +} + +.ion-ios-hand:before { + content: "\f190"; +} + +.ion-ios-hand-outline:before { + content: "\f18f"; +} + +.ion-ios-happy:before { + content: "\f192"; +} + +.ion-ios-happy-outline:before { + content: "\f191"; +} + +.ion-ios-headset:before { + content: "\f194"; +} + +.ion-ios-headset-outline:before { + content: "\f193"; +} + +.ion-ios-heart:before { + content: "\f443"; +} + +.ion-ios-heart-outline:before { + content: "\f442"; +} + +.ion-ios-help:before { + content: "\f446"; +} + +.ion-ios-help-buoy:before { + content: "\f196"; +} + +.ion-ios-help-buoy-outline:before { + content: "\f195"; +} + +.ion-ios-help-circle:before { + content: "\f198"; +} + +.ion-ios-help-circle-outline:before { + content: "\f197"; +} + +.ion-ios-help-outline:before { + content: "\f446"; +} + +.ion-ios-home:before { + content: "\f448"; +} + +.ion-ios-home-outline:before { + content: "\f447"; +} + +.ion-ios-ice-cream:before { + content: "\f19a"; +} + +.ion-ios-ice-cream-outline:before { + content: "\f199"; +} + +.ion-ios-image:before { + content: "\f19c"; +} + +.ion-ios-image-outline:before { + content: "\f19b"; +} + +.ion-ios-images:before { + content: "\f19e"; +} + +.ion-ios-images-outline:before { + content: "\f19d"; +} + +.ion-ios-infinite:before { + content: "\f44a"; +} + +.ion-ios-infinite-outline:before { + content: "\f449"; +} + +.ion-ios-information:before { + content: "\f44d"; +} + +.ion-ios-information-circle:before { + content: "\f1a0"; +} + +.ion-ios-information-circle-outline:before { + content: "\f19f"; +} + +.ion-ios-information-outline:before { + content: "\f44d"; +} + +.ion-ios-ionic:before { + content: "\f1a1"; +} + +.ion-ios-ionic-outline:before { + content: "\f44e"; +} + +.ion-ios-ionitron:before { + content: "\f1a3"; +} + +.ion-ios-ionitron-outline:before { + content: "\f1a2"; +} + +.ion-ios-jet:before { + content: "\f1a5"; +} + +.ion-ios-jet-outline:before { + content: "\f1a4"; +} + +.ion-ios-key:before { + content: "\f1a7"; +} + +.ion-ios-key-outline:before { + content: "\f1a6"; +} + +.ion-ios-keypad:before { + content: "\f450"; +} + +.ion-ios-keypad-outline:before { + content: "\f44f"; +} + +.ion-ios-laptop:before { + content: "\f1a8"; +} + +.ion-ios-laptop-outline:before { + content: "\f1a8"; +} + +.ion-ios-leaf:before { + content: "\f1aa"; +} + +.ion-ios-leaf-outline:before { + content: "\f1a9"; +} + +.ion-ios-link:before { + content: "\f22a"; +} + +.ion-ios-link-outline:before { + content: "\f1ca"; +} + +.ion-ios-list:before { + content: "\f454"; +} + +.ion-ios-list-box:before { + content: "\f1ac"; +} + +.ion-ios-list-box-outline:before { + content: "\f1ab"; +} + +.ion-ios-list-outline:before { + content: "\f454"; +} + +.ion-ios-locate:before { + content: "\f1ae"; +} + +.ion-ios-locate-outline:before { + content: "\f1ad"; +} + +.ion-ios-lock:before { + content: "\f1b0"; +} + +.ion-ios-lock-outline:before { + content: "\f1af"; +} + +.ion-ios-log-in:before { + content: "\f1b1"; +} + +.ion-ios-log-in-outline:before { + content: "\f1b1"; +} + +.ion-ios-log-out:before { + content: "\f1b2"; +} + +.ion-ios-log-out-outline:before { + content: "\f1b2"; +} + +.ion-ios-magnet:before { + content: "\f1b4"; +} + +.ion-ios-magnet-outline:before { + content: "\f1b3"; +} + +.ion-ios-mail:before { + content: "\f1b8"; +} + +.ion-ios-mail-open:before { + content: "\f1b6"; +} + +.ion-ios-mail-open-outline:before { + content: "\f1b5"; +} + +.ion-ios-mail-outline:before { + content: "\f1b7"; +} + +.ion-ios-male:before { + content: "\f1b9"; +} + +.ion-ios-male-outline:before { + content: "\f1b9"; +} + +.ion-ios-man:before { + content: "\f1bb"; +} + +.ion-ios-man-outline:before { + content: "\f1ba"; +} + +.ion-ios-map:before { + content: "\f1bd"; +} + +.ion-ios-map-outline:before { + content: "\f1bc"; +} + +.ion-ios-medal:before { + content: "\f1bf"; +} + +.ion-ios-medal-outline:before { + content: "\f1be"; +} + +.ion-ios-medical:before { + content: "\f45c"; +} + +.ion-ios-medical-outline:before { + content: "\f45b"; +} + +.ion-ios-medkit:before { + content: "\f45e"; +} + +.ion-ios-medkit-outline:before { + content: "\f45d"; +} + +.ion-ios-megaphone:before { + content: "\f1c1"; +} + +.ion-ios-megaphone-outline:before { + content: "\f1c0"; +} + +.ion-ios-menu:before { + content: "\f1c3"; +} + +.ion-ios-menu-outline:before { + content: "\f1c2"; +} + +.ion-ios-mic:before { + content: "\f461"; +} + +.ion-ios-mic-off:before { + content: "\f45f"; +} + +.ion-ios-mic-off-outline:before { + content: "\f1c4"; +} + +.ion-ios-mic-outline:before { + content: "\f460"; +} + +.ion-ios-microphone:before { + content: "\f1c6"; +} + +.ion-ios-microphone-outline:before { + content: "\f1c5"; +} + +.ion-ios-moon:before { + content: "\f468"; +} + +.ion-ios-moon-outline:before { + content: "\f467"; +} + +.ion-ios-more:before { + content: "\f1c8"; +} + +.ion-ios-more-outline:before { + content: "\f1c7"; +} + +.ion-ios-move:before { + content: "\f1cb"; +} + +.ion-ios-move-outline:before { + content: "\f1cb"; +} + +.ion-ios-musical-note:before { + content: "\f46b"; +} + +.ion-ios-musical-note-outline:before { + content: "\f1cc"; +} + +.ion-ios-musical-notes:before { + content: "\f46c"; +} + +.ion-ios-musical-notes-outline:before { + content: "\f1cd"; +} + +.ion-ios-navigate:before { + content: "\f46e"; +} + +.ion-ios-navigate-outline:before { + content: "\f46d"; +} + +.ion-ios-no-smoking:before { + content: "\f1cf"; +} + +.ion-ios-no-smoking-outline:before { + content: "\f1ce"; +} + +.ion-ios-notifications:before { + content: "\f1d3"; +} + +.ion-ios-notifications-off:before { + content: "\f1d1"; +} + +.ion-ios-notifications-off-outline:before { + content: "\f1d0"; +} + +.ion-ios-notifications-outline:before { + content: "\f1d2"; +} + +.ion-ios-nuclear:before { + content: "\f1d5"; +} + +.ion-ios-nuclear-outline:before { + content: "\f1d4"; +} + +.ion-ios-nutrition:before { + content: "\f470"; +} + +.ion-ios-nutrition-outline:before { + content: "\f46f"; +} + +.ion-ios-open:before { + content: "\f1d7"; +} + +.ion-ios-open-outline:before { + content: "\f1d6"; +} + +.ion-ios-options:before { + content: "\f1d9"; +} + +.ion-ios-options-outline:before { + content: "\f1d8"; +} + +.ion-ios-outlet:before { + content: "\f1db"; +} + +.ion-ios-outlet-outline:before { + content: "\f1da"; +} + +.ion-ios-paper:before { + content: "\f472"; +} + +.ion-ios-paper-outline:before { + content: "\f471"; +} + +.ion-ios-paper-plane:before { + content: "\f1dd"; +} + +.ion-ios-paper-plane-outline:before { + content: "\f1dc"; +} + +.ion-ios-partly-sunny:before { + content: "\f1df"; +} + +.ion-ios-partly-sunny-outline:before { + content: "\f1de"; +} + +.ion-ios-pause:before { + content: "\f478"; +} + +.ion-ios-pause-outline:before { + content: "\f477"; +} + +.ion-ios-paw:before { + content: "\f47a"; +} + +.ion-ios-paw-outline:before { + content: "\f479"; +} + +.ion-ios-people:before { + content: "\f47c"; +} + +.ion-ios-people-outline:before { + content: "\f47b"; +} + +.ion-ios-person:before { + content: "\f47e"; +} + +.ion-ios-person-add:before { + content: "\f1e1"; +} + +.ion-ios-person-add-outline:before { + content: "\f1e0"; +} + +.ion-ios-person-outline:before { + content: "\f47d"; +} + +.ion-ios-phone-landscape:before { + content: "\f1e2"; +} + +.ion-ios-phone-landscape-outline:before { + content: "\f1e2"; +} + +.ion-ios-phone-portrait:before { + content: "\f1e3"; +} + +.ion-ios-phone-portrait-outline:before { + content: "\f1e3"; +} + +.ion-ios-photos:before { + content: "\f482"; +} + +.ion-ios-photos-outline:before { + content: "\f481"; +} + +.ion-ios-pie:before { + content: "\f484"; +} + +.ion-ios-pie-outline:before { + content: "\f483"; +} + +.ion-ios-pin:before { + content: "\f1e5"; +} + +.ion-ios-pin-outline:before { + content: "\f1e4"; +} + +.ion-ios-pint:before { + content: "\f486"; +} + +.ion-ios-pint-outline:before { + content: "\f485"; +} + +.ion-ios-pizza:before { + content: "\f1e7"; +} + +.ion-ios-pizza-outline:before { + content: "\f1e6"; +} + +.ion-ios-plane:before { + content: "\f1e9"; +} + +.ion-ios-plane-outline:before { + content: "\f1e8"; +} + +.ion-ios-planet:before { + content: "\f1eb"; +} + +.ion-ios-planet-outline:before { + content: "\f1ea"; +} + +.ion-ios-play:before { + content: "\f488"; +} + +.ion-ios-play-outline:before { + content: "\f487"; +} + +.ion-ios-podium:before { + content: "\f1ed"; +} + +.ion-ios-podium-outline:before { + content: "\f1ec"; +} + +.ion-ios-power:before { + content: "\f1ef"; +} + +.ion-ios-power-outline:before { + content: "\f1ee"; +} + +.ion-ios-pricetag:before { + content: "\f48d"; +} + +.ion-ios-pricetag-outline:before { + content: "\f48c"; +} + +.ion-ios-pricetags:before { + content: "\f48f"; +} + +.ion-ios-pricetags-outline:before { + content: "\f48e"; +} + +.ion-ios-print:before { + content: "\f1f1"; +} + +.ion-ios-print-outline:before { + content: "\f1f0"; +} + +.ion-ios-pulse:before { + content: "\f493"; +} + +.ion-ios-pulse-outline:before { + content: "\f1f2"; +} + +.ion-ios-qr-scanner:before { + content: "\f1f3"; +} + +.ion-ios-qr-scanner-outline:before { + content: "\f1f3"; +} + +.ion-ios-quote:before { + content: "\f1f5"; +} + +.ion-ios-quote-outline:before { + content: "\f1f4"; +} + +.ion-ios-radio:before { + content: "\f1f9"; +} + +.ion-ios-radio-button-off:before { + content: "\f1f6"; +} + +.ion-ios-radio-button-off-outline:before { + content: "\f1f6"; +} + +.ion-ios-radio-button-on:before { + content: "\f1f7"; +} + +.ion-ios-radio-button-on-outline:before { + content: "\f1f7"; +} + +.ion-ios-radio-outline:before { + content: "\f1f8"; +} + +.ion-ios-rainy:before { + content: "\f495"; +} + +.ion-ios-rainy-outline:before { + content: "\f494"; +} + +.ion-ios-recording:before { + content: "\f497"; +} + +.ion-ios-recording-outline:before { + content: "\f496"; +} + +.ion-ios-redo:before { + content: "\f499"; +} + +.ion-ios-redo-outline:before { + content: "\f498"; +} + +.ion-ios-refresh:before { + content: "\f49c"; +} + +.ion-ios-refresh-circle:before { + content: "\f226"; +} + +.ion-ios-refresh-circle-outline:before { + content: "\f224"; +} + +.ion-ios-refresh-outline:before { + content: "\f49c"; +} + +.ion-ios-remove:before { + content: "\f1fc"; +} + +.ion-ios-remove-circle:before { + content: "\f1fb"; +} + +.ion-ios-remove-circle-outline:before { + content: "\f1fa"; +} + +.ion-ios-remove-outline:before { + content: "\f1fc"; +} + +.ion-ios-reorder:before { + content: "\f1fd"; +} + +.ion-ios-reorder-outline:before { + content: "\f1fd"; +} + +.ion-ios-repeat:before { + content: "\f1fe"; +} + +.ion-ios-repeat-outline:before { + content: "\f1fe"; +} + +.ion-ios-resize:before { + content: "\f1ff"; +} + +.ion-ios-resize-outline:before { + content: "\f1ff"; +} + +.ion-ios-restaurant:before { + content: "\f201"; +} + +.ion-ios-restaurant-outline:before { + content: "\f200"; +} + +.ion-ios-return-left:before { + content: "\f202"; +} + +.ion-ios-return-left-outline:before { + content: "\f202"; +} + +.ion-ios-return-right:before { + content: "\f203"; +} + +.ion-ios-return-right-outline:before { + content: "\f203"; +} + +.ion-ios-reverse-camera:before { + content: "\f49f"; +} + +.ion-ios-reverse-camera-outline:before { + content: "\f49e"; +} + +.ion-ios-rewind:before { + content: "\f4a1"; +} + +.ion-ios-rewind-outline:before { + content: "\f4a0"; +} + +.ion-ios-ribbon:before { + content: "\f205"; +} + +.ion-ios-ribbon-outline:before { + content: "\f204"; +} + +.ion-ios-rose:before { + content: "\f4a3"; +} + +.ion-ios-rose-outline:before { + content: "\f4a2"; +} + +.ion-ios-sad:before { + content: "\f207"; +} + +.ion-ios-sad-outline:before { + content: "\f206"; +} + +.ion-ios-school:before { + content: "\f209"; +} + +.ion-ios-school-outline:before { + content: "\f208"; +} + +.ion-ios-search:before { + content: "\f4a5"; +} + +.ion-ios-search-outline:before { + content: "\f20a"; +} + +.ion-ios-send:before { + content: "\f20c"; +} + +.ion-ios-send-outline:before { + content: "\f20b"; +} + +.ion-ios-settings:before { + content: "\f4a7"; +} + +.ion-ios-settings-outline:before { + content: "\f20d"; +} + +.ion-ios-share:before { + content: "\f211"; +} + +.ion-ios-share-alt:before { + content: "\f20f"; +} + +.ion-ios-share-alt-outline:before { + content: "\f20e"; +} + +.ion-ios-share-outline:before { + content: "\f210"; +} + +.ion-ios-shirt:before { + content: "\f213"; +} + +.ion-ios-shirt-outline:before { + content: "\f212"; +} + +.ion-ios-shuffle:before { + content: "\f4a9"; +} + +.ion-ios-shuffle-outline:before { + content: "\f4a9"; +} + +.ion-ios-skip-backward:before { + content: "\f215"; +} + +.ion-ios-skip-backward-outline:before { + content: "\f214"; +} + +.ion-ios-skip-forward:before { + content: "\f217"; +} + +.ion-ios-skip-forward-outline:before { + content: "\f216"; +} + +.ion-ios-snow:before { + content: "\f218"; +} + +.ion-ios-snow-outline:before { + content: "\f22c"; +} + +.ion-ios-speedometer:before { + content: "\f4b0"; +} + +.ion-ios-speedometer-outline:before { + content: "\f4af"; +} + +.ion-ios-square:before { + content: "\f21a"; +} + +.ion-ios-square-outline:before { + content: "\f219"; +} + +.ion-ios-star:before { + content: "\f4b3"; +} + +.ion-ios-star-half:before { + content: "\f4b1"; +} + +.ion-ios-star-half-outline:before { + content: "\f4b1"; +} + +.ion-ios-star-outline:before { + content: "\f4b2"; +} + +.ion-ios-stats:before { + content: "\f21c"; +} + +.ion-ios-stats-outline:before { + content: "\f21b"; +} + +.ion-ios-stopwatch:before { + content: "\f4b5"; +} + +.ion-ios-stopwatch-outline:before { + content: "\f4b4"; +} + +.ion-ios-subway:before { + content: "\f21e"; +} + +.ion-ios-subway-outline:before { + content: "\f21d"; +} + +.ion-ios-sunny:before { + content: "\f4b7"; +} + +.ion-ios-sunny-outline:before { + content: "\f4b6"; +} + +.ion-ios-swap:before { + content: "\f21f"; +} + +.ion-ios-swap-outline:before { + content: "\f21f"; +} + +.ion-ios-switch:before { + content: "\f221"; +} + +.ion-ios-switch-outline:before { + content: "\f220"; +} + +.ion-ios-sync:before { + content: "\f222"; +} + +.ion-ios-sync-outline:before { + content: "\f222"; +} + +.ion-ios-tablet-landscape:before { + content: "\f223"; +} + +.ion-ios-tablet-landscape-outline:before { + content: "\f223"; +} + +.ion-ios-tablet-portrait:before { + content: "\f24e"; +} + +.ion-ios-tablet-portrait-outline:before { + content: "\f24e"; +} + +.ion-ios-tennisball:before { + content: "\f4bb"; +} + +.ion-ios-tennisball-outline:before { + content: "\f4ba"; +} + +.ion-ios-text:before { + content: "\f250"; +} + +.ion-ios-text-outline:before { + content: "\f24f"; +} + +.ion-ios-thermometer:before { + content: "\f252"; +} + +.ion-ios-thermometer-outline:before { + content: "\f251"; +} + +.ion-ios-thumbs-down:before { + content: "\f254"; +} + +.ion-ios-thumbs-down-outline:before { + content: "\f253"; +} + +.ion-ios-thumbs-up:before { + content: "\f256"; +} + +.ion-ios-thumbs-up-outline:before { + content: "\f255"; +} + +.ion-ios-thunderstorm:before { + content: "\f4bd"; +} + +.ion-ios-thunderstorm-outline:before { + content: "\f4bc"; +} + +.ion-ios-time:before { + content: "\f4bf"; +} + +.ion-ios-time-outline:before { + content: "\f4be"; +} + +.ion-ios-timer:before { + content: "\f4c1"; +} + +.ion-ios-timer-outline:before { + content: "\f4c0"; +} + +.ion-ios-train:before { + content: "\f258"; +} + +.ion-ios-train-outline:before { + content: "\f257"; +} + +.ion-ios-transgender:before { + content: "\f259"; +} + +.ion-ios-transgender-outline:before { + content: "\f259"; +} + +.ion-ios-trash:before { + content: "\f4c5"; +} + +.ion-ios-trash-outline:before { + content: "\f4c4"; +} + +.ion-ios-trending-down:before { + content: "\f25a"; +} + +.ion-ios-trending-down-outline:before { + content: "\f25a"; +} + +.ion-ios-trending-up:before { + content: "\f25b"; +} + +.ion-ios-trending-up-outline:before { + content: "\f25b"; +} + +.ion-ios-trophy:before { + content: "\f25d"; +} + +.ion-ios-trophy-outline:before { + content: "\f25c"; +} + +.ion-ios-umbrella:before { + content: "\f25f"; +} + +.ion-ios-umbrella-outline:before { + content: "\f25e"; +} + +.ion-ios-undo:before { + content: "\f4c7"; +} + +.ion-ios-undo-outline:before { + content: "\f4c6"; +} + +.ion-ios-unlock:before { + content: "\f261"; +} + +.ion-ios-unlock-outline:before { + content: "\f260"; +} + +.ion-ios-videocam:before { + content: "\f4cd"; +} + +.ion-ios-videocam-outline:before { + content: "\f4cc"; +} + +.ion-ios-volume-down:before { + content: "\f262"; +} + +.ion-ios-volume-down-outline:before { + content: "\f262"; +} + +.ion-ios-volume-mute:before { + content: "\f263"; +} + +.ion-ios-volume-mute-outline:before { + content: "\f263"; +} + +.ion-ios-volume-off:before { + content: "\f264"; +} + +.ion-ios-volume-off-outline:before { + content: "\f264"; +} + +.ion-ios-volume-up:before { + content: "\f265"; +} + +.ion-ios-volume-up-outline:before { + content: "\f265"; +} + +.ion-ios-walk:before { + content: "\f266"; +} + +.ion-ios-walk-outline:before { + content: "\f266"; +} + +.ion-ios-warning:before { + content: "\f268"; +} + +.ion-ios-warning-outline:before { + content: "\f267"; +} + +.ion-ios-watch:before { + content: "\f269"; +} + +.ion-ios-watch-outline:before { + content: "\f269"; +} + +.ion-ios-water:before { + content: "\f26b"; +} + +.ion-ios-water-outline:before { + content: "\f26a"; +} + +.ion-ios-wifi:before { + content: "\f26d"; +} + +.ion-ios-wifi-outline:before { + content: "\f26c"; +} + +.ion-ios-wine:before { + content: "\f26f"; +} + +.ion-ios-wine-outline:before { + content: "\f26e"; +} + +.ion-ios-woman:before { + content: "\f271"; +} + +.ion-ios-woman-outline:before { + content: "\f270"; +} + +.ion-logo-android:before { + content: "\f225"; +} + +.ion-logo-angular:before { + content: "\f227"; +} + +.ion-logo-apple:before { + content: "\f229"; +} + +.ion-logo-bitcoin:before { + content: "\f22b"; +} + +.ion-logo-buffer:before { + content: "\f22d"; +} + +.ion-logo-chrome:before { + content: "\f22f"; +} + +.ion-logo-codepen:before { + content: "\f230"; +} + +.ion-logo-css3:before { + content: "\f231"; +} + +.ion-logo-designernews:before { + content: "\f232"; +} + +.ion-logo-dribbble:before { + content: "\f233"; +} + +.ion-logo-dropbox:before { + content: "\f234"; +} + +.ion-logo-euro:before { + content: "\f235"; +} + +.ion-logo-facebook:before { + content: "\f236"; +} + +.ion-logo-foursquare:before { + content: "\f237"; +} + +.ion-logo-freebsd-devil:before { + content: "\f238"; +} + +.ion-logo-github:before { + content: "\f239"; +} + +.ion-logo-google:before { + content: "\f23a"; +} + +.ion-logo-googleplus:before { + content: "\f23b"; +} + +.ion-logo-hackernews:before { + content: "\f23c"; +} + +.ion-logo-html5:before { + content: "\f23d"; +} + +.ion-logo-instagram:before { + content: "\f23e"; +} + +.ion-logo-javascript:before { + content: "\f23f"; +} + +.ion-logo-linkedin:before { + content: "\f240"; +} + +.ion-logo-markdown:before { + content: "\f241"; +} + +.ion-logo-nodejs:before { + content: "\f242"; +} + +.ion-logo-octocat:before { + content: "\f243"; +} + +.ion-logo-pinterest:before { + content: "\f244"; +} + +.ion-logo-playstation:before { + content: "\f245"; +} + +.ion-logo-python:before { + content: "\f246"; +} + +.ion-logo-reddit:before { + content: "\f247"; +} + +.ion-logo-rss:before { + content: "\f248"; +} + +.ion-logo-sass:before { + content: "\f249"; +} + +.ion-logo-skype:before { + content: "\f24a"; +} + +.ion-logo-snapchat:before { + content: "\f24b"; +} + +.ion-logo-steam:before { + content: "\f24c"; +} + +.ion-logo-tumblr:before { + content: "\f24d"; +} + +.ion-logo-tux:before { + content: "\f2ae"; +} + +.ion-logo-twitch:before { + content: "\f2af"; +} + +.ion-logo-twitter:before { + content: "\f2b0"; +} + +.ion-logo-usd:before { + content: "\f2b1"; +} + +.ion-logo-vimeo:before { + content: "\f2c4"; +} + +.ion-logo-whatsapp:before { + content: "\f2c5"; +} + +.ion-logo-windows:before { + content: "\f32f"; +} + +.ion-logo-wordpress:before { + content: "\f330"; +} + +.ion-logo-xbox:before { + content: "\f34c"; +} + +.ion-logo-yahoo:before { + content: "\f34d"; +} + +.ion-logo-yen:before { + content: "\f34e"; +} + +.ion-logo-youtube:before { + content: "\f34f"; +} + +.ion-md-add:before { + content: "\f273"; +} + +.ion-md-add-circle:before { + content: "\f272"; +} + +.ion-md-alarm:before { + content: "\f274"; +} + +.ion-md-albums:before { + content: "\f275"; +} + +.ion-md-alert:before { + content: "\f276"; +} + +.ion-md-american-football:before { + content: "\f277"; +} + +.ion-md-analytics:before { + content: "\f278"; +} + +.ion-md-aperture:before { + content: "\f279"; +} + +.ion-md-apps:before { + content: "\f27a"; +} + +.ion-md-appstore:before { + content: "\f27b"; +} + +.ion-md-archive:before { + content: "\f27c"; +} + +.ion-md-arrow-back:before { + content: "\f27d"; +} + +.ion-md-arrow-down:before { + content: "\f27e"; +} + +.ion-md-arrow-dropdown:before { + content: "\f280"; +} + +.ion-md-arrow-dropdown-circle:before { + content: "\f27f"; +} + +.ion-md-arrow-dropleft:before { + content: "\f282"; +} + +.ion-md-arrow-dropleft-circle:before { + content: "\f281"; +} + +.ion-md-arrow-dropright:before { + content: "\f284"; +} + +.ion-md-arrow-dropright-circle:before { + content: "\f283"; +} + +.ion-md-arrow-dropup:before { + content: "\f286"; +} + +.ion-md-arrow-dropup-circle:before { + content: "\f285"; +} + +.ion-md-arrow-forward:before { + content: "\f287"; +} + +.ion-md-arrow-round-back:before { + content: "\f288"; +} + +.ion-md-arrow-round-down:before { + content: "\f289"; +} + +.ion-md-arrow-round-forward:before { + content: "\f28a"; +} + +.ion-md-arrow-round-up:before { + content: "\f28b"; +} + +.ion-md-arrow-up:before { + content: "\f28c"; +} + +.ion-md-at:before { + content: "\f28d"; +} + +.ion-md-attach:before { + content: "\f28e"; +} + +.ion-md-backspace:before { + content: "\f28f"; +} + +.ion-md-barcode:before { + content: "\f290"; +} + +.ion-md-baseball:before { + content: "\f291"; +} + +.ion-md-basket:before { + content: "\f292"; +} + +.ion-md-basketball:before { + content: "\f293"; +} + +.ion-md-battery-charging:before { + content: "\f294"; +} + +.ion-md-battery-dead:before { + content: "\f295"; +} + +.ion-md-battery-full:before { + content: "\f296"; +} + +.ion-md-beaker:before { + content: "\f297"; +} + +.ion-md-beer:before { + content: "\f298"; +} + +.ion-md-bicycle:before { + content: "\f299"; +} + +.ion-md-bluetooth:before { + content: "\f29a"; +} + +.ion-md-boat:before { + content: "\f29b"; +} + +.ion-md-body:before { + content: "\f29c"; +} + +.ion-md-bonfire:before { + content: "\f29d"; +} + +.ion-md-book:before { + content: "\f29e"; +} + +.ion-md-bookmark:before { + content: "\f29f"; +} + +.ion-md-bookmarks:before { + content: "\f2a0"; +} + +.ion-md-bowtie:before { + content: "\f2a1"; +} + +.ion-md-briefcase:before { + content: "\f2a2"; +} + +.ion-md-browsers:before { + content: "\f2a3"; +} + +.ion-md-brush:before { + content: "\f2a4"; +} + +.ion-md-bug:before { + content: "\f2a5"; +} + +.ion-md-build:before { + content: "\f2a6"; +} + +.ion-md-bulb:before { + content: "\f2a7"; +} + +.ion-md-bus:before { + content: "\f2a8"; +} + +.ion-md-cafe:before { + content: "\f2a9"; +} + +.ion-md-calculator:before { + content: "\f2aa"; +} + +.ion-md-calendar:before { + content: "\f2ab"; +} + +.ion-md-call:before { + content: "\f2ac"; +} + +.ion-md-camera:before { + content: "\f2ad"; +} + +.ion-md-car:before { + content: "\f2b2"; +} + +.ion-md-card:before { + content: "\f2b3"; +} + +.ion-md-cart:before { + content: "\f2b4"; +} + +.ion-md-cash:before { + content: "\f2b5"; +} + +.ion-md-chatboxes:before { + content: "\f2b6"; +} + +.ion-md-chatbubbles:before { + content: "\f2b7"; +} + +.ion-md-checkbox:before { + content: "\f2b9"; +} + +.ion-md-checkbox-outline:before { + content: "\f2b8"; +} + +.ion-md-checkmark:before { + content: "\f2bc"; +} + +.ion-md-checkmark-circle:before { + content: "\f2bb"; +} + +.ion-md-checkmark-circle-outline:before { + content: "\f2ba"; +} + +.ion-md-clipboard:before { + content: "\f2bd"; +} + +.ion-md-clock:before { + content: "\f2be"; +} + +.ion-md-close:before { + content: "\f2c0"; +} + +.ion-md-close-circle:before { + content: "\f2bf"; +} + +.ion-md-closed-captioning:before { + content: "\f2c1"; +} + +.ion-md-cloud:before { + content: "\f2c9"; +} + +.ion-md-cloud-circle:before { + content: "\f2c2"; +} + +.ion-md-cloud-done:before { + content: "\f2c3"; +} + +.ion-md-cloud-download:before { + content: "\f2c6"; +} + +.ion-md-cloud-outline:before { + content: "\f2c7"; +} + +.ion-md-cloud-upload:before { + content: "\f2c8"; +} + +.ion-md-cloudy:before { + content: "\f2cb"; +} + +.ion-md-cloudy-night:before { + content: "\f2ca"; +} + +.ion-md-code:before { + content: "\f2ce"; +} + +.ion-md-code-download:before { + content: "\f2cc"; +} + +.ion-md-code-working:before { + content: "\f2cd"; +} + +.ion-md-cog:before { + content: "\f2cf"; +} + +.ion-md-color-fill:before { + content: "\f2d0"; +} + +.ion-md-color-filter:before { + content: "\f2d1"; +} + +.ion-md-color-palette:before { + content: "\f2d2"; +} + +.ion-md-color-wand:before { + content: "\f2d3"; +} + +.ion-md-compass:before { + content: "\f2d4"; +} + +.ion-md-construct:before { + content: "\f2d5"; +} + +.ion-md-contact:before { + content: "\f2d6"; +} + +.ion-md-contacts:before { + content: "\f2d7"; +} + +.ion-md-contract:before { + content: "\f2d8"; +} + +.ion-md-contrast:before { + content: "\f2d9"; +} + +.ion-md-copy:before { + content: "\f2da"; +} + +.ion-md-create:before { + content: "\f2db"; +} + +.ion-md-crop:before { + content: "\f2dc"; +} + +.ion-md-cube:before { + content: "\f2dd"; +} + +.ion-md-cut:before { + content: "\f2de"; +} + +.ion-md-desktop:before { + content: "\f2df"; +} + +.ion-md-disc:before { + content: "\f2e0"; +} + +.ion-md-document:before { + content: "\f2e1"; +} + +.ion-md-done-all:before { + content: "\f2e2"; +} + +.ion-md-download:before { + content: "\f2e3"; +} + +.ion-md-easel:before { + content: "\f2e4"; +} + +.ion-md-egg:before { + content: "\f2e5"; +} + +.ion-md-exit:before { + content: "\f2e6"; +} + +.ion-md-expand:before { + content: "\f2e7"; +} + +.ion-md-eye:before { + content: "\f2e9"; +} + +.ion-md-eye-off:before { + content: "\f2e8"; +} + +.ion-md-fastforward:before { + content: "\f2ea"; +} + +.ion-md-female:before { + content: "\f2eb"; +} + +.ion-md-filing:before { + content: "\f2ec"; +} + +.ion-md-film:before { + content: "\f2ed"; +} + +.ion-md-finger-print:before { + content: "\f2ee"; +} + +.ion-md-flag:before { + content: "\f2ef"; +} + +.ion-md-flame:before { + content: "\f2f0"; +} + +.ion-md-flash:before { + content: "\f2f1"; +} + +.ion-md-flask:before { + content: "\f2f2"; +} + +.ion-md-flower:before { + content: "\f2f3"; +} + +.ion-md-folder:before { + content: "\f2f5"; +} + +.ion-md-folder-open:before { + content: "\f2f4"; +} + +.ion-md-football:before { + content: "\f2f6"; +} + +.ion-md-funnel:before { + content: "\f2f7"; +} + +.ion-md-game-controller-a:before { + content: "\f2f8"; +} + +.ion-md-game-controller-b:before { + content: "\f2f9"; +} + +.ion-md-git-branch:before { + content: "\f2fa"; +} + +.ion-md-git-commit:before { + content: "\f2fb"; +} + +.ion-md-git-compare:before { + content: "\f2fc"; +} + +.ion-md-git-merge:before { + content: "\f2fd"; +} + +.ion-md-git-network:before { + content: "\f2fe"; +} + +.ion-md-git-pull-request:before { + content: "\f2ff"; +} + +.ion-md-glasses:before { + content: "\f300"; +} + +.ion-md-globe:before { + content: "\f301"; +} + +.ion-md-grid:before { + content: "\f302"; +} + +.ion-md-hammer:before { + content: "\f303"; +} + +.ion-md-hand:before { + content: "\f304"; +} + +.ion-md-happy:before { + content: "\f305"; +} + +.ion-md-headset:before { + content: "\f306"; +} + +.ion-md-heart:before { + content: "\f308"; +} + +.ion-md-heart-outline:before { + content: "\f307"; +} + +.ion-md-help:before { + content: "\f30b"; +} + +.ion-md-help-buoy:before { + content: "\f309"; +} + +.ion-md-help-circle:before { + content: "\f30a"; +} + +.ion-md-home:before { + content: "\f30c"; +} + +.ion-md-ice-cream:before { + content: "\f30d"; +} + +.ion-md-image:before { + content: "\f30e"; +} + +.ion-md-images:before { + content: "\f30f"; +} + +.ion-md-infinite:before { + content: "\f310"; +} + +.ion-md-information:before { + content: "\f312"; +} + +.ion-md-information-circle:before { + content: "\f311"; +} + +.ion-md-ionic:before { + content: "\f313"; +} + +.ion-md-ionitron:before { + content: "\f314"; +} + +.ion-md-jet:before { + content: "\f315"; +} + +.ion-md-key:before { + content: "\f316"; +} + +.ion-md-keypad:before { + content: "\f317"; +} + +.ion-md-laptop:before { + content: "\f318"; +} + +.ion-md-leaf:before { + content: "\f319"; +} + +.ion-md-link:before { + content: "\f22e"; +} + +.ion-md-list:before { + content: "\f31b"; +} + +.ion-md-list-box:before { + content: "\f31a"; +} + +.ion-md-locate:before { + content: "\f31c"; +} + +.ion-md-lock:before { + content: "\f31d"; +} + +.ion-md-log-in:before { + content: "\f31e"; +} + +.ion-md-log-out:before { + content: "\f31f"; +} + +.ion-md-magnet:before { + content: "\f320"; +} + +.ion-md-mail:before { + content: "\f322"; +} + +.ion-md-mail-open:before { + content: "\f321"; +} + +.ion-md-male:before { + content: "\f323"; +} + +.ion-md-man:before { + content: "\f324"; +} + +.ion-md-map:before { + content: "\f325"; +} + +.ion-md-medal:before { + content: "\f326"; +} + +.ion-md-medical:before { + content: "\f327"; +} + +.ion-md-medkit:before { + content: "\f328"; +} + +.ion-md-megaphone:before { + content: "\f329"; +} + +.ion-md-menu:before { + content: "\f32a"; +} + +.ion-md-mic:before { + content: "\f32c"; +} + +.ion-md-mic-off:before { + content: "\f32b"; +} + +.ion-md-microphone:before { + content: "\f32d"; +} + +.ion-md-moon:before { + content: "\f32e"; +} + +.ion-md-more:before { + content: "\f1c9"; +} + +.ion-md-move:before { + content: "\f331"; +} + +.ion-md-musical-note:before { + content: "\f332"; +} + +.ion-md-musical-notes:before { + content: "\f333"; +} + +.ion-md-navigate:before { + content: "\f334"; +} + +.ion-md-no-smoking:before { + content: "\f335"; +} + +.ion-md-notifications:before { + content: "\f338"; +} + +.ion-md-notifications-off:before { + content: "\f336"; +} + +.ion-md-notifications-outline:before { + content: "\f337"; +} + +.ion-md-nuclear:before { + content: "\f339"; +} + +.ion-md-nutrition:before { + content: "\f33a"; +} + +.ion-md-open:before { + content: "\f33b"; +} + +.ion-md-options:before { + content: "\f33c"; +} + +.ion-md-outlet:before { + content: "\f33d"; +} + +.ion-md-paper:before { + content: "\f33f"; +} + +.ion-md-paper-plane:before { + content: "\f33e"; +} + +.ion-md-partly-sunny:before { + content: "\f340"; +} + +.ion-md-pause:before { + content: "\f341"; +} + +.ion-md-paw:before { + content: "\f342"; +} + +.ion-md-people:before { + content: "\f343"; +} + +.ion-md-person:before { + content: "\f345"; +} + +.ion-md-person-add:before { + content: "\f344"; +} + +.ion-md-phone-landscape:before { + content: "\f346"; +} + +.ion-md-phone-portrait:before { + content: "\f347"; +} + +.ion-md-photos:before { + content: "\f348"; +} + +.ion-md-pie:before { + content: "\f349"; +} + +.ion-md-pin:before { + content: "\f34a"; +} + +.ion-md-pint:before { + content: "\f34b"; +} + +.ion-md-pizza:before { + content: "\f354"; +} + +.ion-md-plane:before { + content: "\f355"; +} + +.ion-md-planet:before { + content: "\f356"; +} + +.ion-md-play:before { + content: "\f357"; +} + +.ion-md-podium:before { + content: "\f358"; +} + +.ion-md-power:before { + content: "\f359"; +} + +.ion-md-pricetag:before { + content: "\f35a"; +} + +.ion-md-pricetags:before { + content: "\f35b"; +} + +.ion-md-print:before { + content: "\f35c"; +} + +.ion-md-pulse:before { + content: "\f35d"; +} + +.ion-md-qr-scanner:before { + content: "\f35e"; +} + +.ion-md-quote:before { + content: "\f35f"; +} + +.ion-md-radio:before { + content: "\f362"; +} + +.ion-md-radio-button-off:before { + content: "\f360"; +} + +.ion-md-radio-button-on:before { + content: "\f361"; +} + +.ion-md-rainy:before { + content: "\f363"; +} + +.ion-md-recording:before { + content: "\f364"; +} + +.ion-md-redo:before { + content: "\f365"; +} + +.ion-md-refresh:before { + content: "\f366"; +} + +.ion-md-refresh-circle:before { + content: "\f228"; +} + +.ion-md-remove:before { + content: "\f368"; +} + +.ion-md-remove-circle:before { + content: "\f367"; +} + +.ion-md-reorder:before { + content: "\f369"; +} + +.ion-md-repeat:before { + content: "\f36a"; +} + +.ion-md-resize:before { + content: "\f36b"; +} + +.ion-md-restaurant:before { + content: "\f36c"; +} + +.ion-md-return-left:before { + content: "\f36d"; +} + +.ion-md-return-right:before { + content: "\f36e"; +} + +.ion-md-reverse-camera:before { + content: "\f36f"; +} + +.ion-md-rewind:before { + content: "\f370"; +} + +.ion-md-ribbon:before { + content: "\f371"; +} + +.ion-md-rose:before { + content: "\f372"; +} + +.ion-md-sad:before { + content: "\f373"; +} + +.ion-md-school:before { + content: "\f374"; +} + +.ion-md-search:before { + content: "\f375"; +} + +.ion-md-send:before { + content: "\f376"; +} + +.ion-md-settings:before { + content: "\f377"; +} + +.ion-md-share:before { + content: "\f379"; +} + +.ion-md-share-alt:before { + content: "\f378"; +} + +.ion-md-shirt:before { + content: "\f37a"; +} + +.ion-md-shuffle:before { + content: "\f37b"; +} + +.ion-md-skip-backward:before { + content: "\f37c"; +} + +.ion-md-skip-forward:before { + content: "\f37d"; +} + +.ion-md-snow:before { + content: "\f37e"; +} + +.ion-md-speedometer:before { + content: "\f37f"; +} + +.ion-md-square:before { + content: "\f381"; +} + +.ion-md-square-outline:before { + content: "\f380"; +} + +.ion-md-star:before { + content: "\f384"; +} + +.ion-md-star-half:before { + content: "\f382"; +} + +.ion-md-star-outline:before { + content: "\f383"; +} + +.ion-md-stats:before { + content: "\f385"; +} + +.ion-md-stopwatch:before { + content: "\f386"; +} + +.ion-md-subway:before { + content: "\f387"; +} + +.ion-md-sunny:before { + content: "\f388"; +} + +.ion-md-swap:before { + content: "\f389"; +} + +.ion-md-switch:before { + content: "\f38a"; +} + +.ion-md-sync:before { + content: "\f38b"; +} + +.ion-md-tablet-landscape:before { + content: "\f38c"; +} + +.ion-md-tablet-portrait:before { + content: "\f38d"; +} + +.ion-md-tennisball:before { + content: "\f38e"; +} + +.ion-md-text:before { + content: "\f38f"; +} + +.ion-md-thermometer:before { + content: "\f390"; +} + +.ion-md-thumbs-down:before { + content: "\f391"; +} + +.ion-md-thumbs-up:before { + content: "\f392"; +} + +.ion-md-thunderstorm:before { + content: "\f393"; +} + +.ion-md-time:before { + content: "\f394"; +} + +.ion-md-timer:before { + content: "\f395"; +} + +.ion-md-train:before { + content: "\f396"; +} + +.ion-md-transgender:before { + content: "\f397"; +} + +.ion-md-trash:before { + content: "\f398"; +} + +.ion-md-trending-down:before { + content: "\f399"; +} + +.ion-md-trending-up:before { + content: "\f39a"; +} + +.ion-md-trophy:before { + content: "\f39b"; +} + +.ion-md-umbrella:before { + content: "\f39c"; +} + +.ion-md-undo:before { + content: "\f39d"; +} + +.ion-md-unlock:before { + content: "\f39e"; +} + +.ion-md-videocam:before { + content: "\f39f"; +} + +.ion-md-volume-down:before { + content: "\f3a0"; +} + +.ion-md-volume-mute:before { + content: "\f3a1"; +} + +.ion-md-volume-off:before { + content: "\f3a2"; +} + +.ion-md-volume-up:before { + content: "\f3a3"; +} + +.ion-md-walk:before { + content: "\f3a4"; +} + +.ion-md-warning:before { + content: "\f3a5"; +} + +.ion-md-watch:before { + content: "\f3a6"; +} + +.ion-md-water:before { + content: "\f3a7"; +} + +.ion-md-wifi:before { + content: "\f3a8"; +} + +.ion-md-wine:before { + content: "\f3a9"; +} + +.ion-md-woman:before { + content: "\f3aa"; +} + +@font-face { + font-family: "Roboto"; + font-style: normal; + font-weight: 300; + src: local("Roboto Light"), local("Roboto-Light"), url("../assets/fonts/roboto-light.ttf") format("truetype"), url("../assets/fonts/roboto-light.woff") format("woff"); +} + +@font-face { + font-family: "Roboto"; + font-style: normal; + font-weight: 400; + src: local("Roboto"), local("Roboto-Regular"), url("../assets/fonts/roboto-regular.ttf") format("truetype"), url("../assets/fonts/roboto-regular.woff") format("woff"); +} + +@font-face { + font-family: "Roboto"; + font-style: normal; + font-weight: 500; + src: local("Roboto Medium"), local("Roboto-Medium"), url("../assets/fonts/roboto-medium.ttf") format("truetype"), url("../assets/fonts/roboto-medium.woff") format("woff"); +} + +@font-face { + font-family: "Roboto"; + font-style: normal; + font-weight: 700; + src: local("Roboto Bold"), local("Roboto-Bold"), url("../assets/fonts/roboto-bold.ttf") format("truetype"), url("../assets/fonts/roboto-bold.woff") format("woff"); +} + +@font-face { + font-family: "Noto Sans"; + font-style: normal; + font-weight: 300; + src: local("Noto Sans"), local("Noto-Sans-Regular"), url("../assets/fonts/noto-sans-regular.ttf") format("truetype"); +} + +@font-face { + font-family: "Noto Sans"; + font-style: normal; + font-weight: 400; + src: local("Noto Sans"), local("Noto-Sans-Regular"), url("../assets/fonts/noto-sans-regular.ttf") format("truetype"); +} + +@font-face { + font-family: "Noto Sans"; + font-style: normal; + font-weight: 500; + src: local("Noto Sans Bold"), local("Noto-Sans-Bold"), url("../assets/fonts/noto-sans-bold.ttf") format("truetype"); +} + +@font-face { + font-family: "Noto Sans"; + font-style: normal; + font-weight: 700; + src: local("Noto Sans Bold"), local("Noto-Sans-Bold"), url("../assets/fonts/noto-sans-bold.ttf") format("truetype"); +} + +ion-action-sheet { + position: absolute; + top: 0; + left: 0; + z-index: 1000; + display: block; + width: 100%; + height: 100%; +} + +.action-sheet-wrapper { + position: absolute; + right: 0; + bottom: 0; + left: 0; + z-index: 10; + display: block; + margin: auto; + width: 100%; + max-width: 500px; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); +} + +.action-sheet-button { + width: 100%; +} + +.action-sheet-ios { + text-align: center; +} + +.action-sheet-ios .action-sheet-container { + padding: 0 10px; +} + +.action-sheet-ios .action-sheet-group { + overflow: hidden; + margin-bottom: 8px; + border-radius: 13px; + background: #f9f9f9; +} + +.action-sheet-ios .action-sheet-group:last-child { + margin-bottom: 10px; +} + +.action-sheet-ios .action-sheet-title { + padding: 1.5rem; + border-bottom: 0.55px solid #d6d6da; + border-radius: 0; + font-size: 1.3rem; + font-weight: 400; + text-align: center; + color: #8f8f8f; +} + +.action-sheet-ios .action-sheet-button { + margin: 0; + padding: 18px; + min-height: 5.6rem; + border-bottom: 0.55px solid #d6d6da; + font-size: 2rem; + color: #007aff; + background: transparent; +} + +.action-sheet-ios .action-sheet-button:last-child { + border-bottom-color: transparent; +} + +.action-sheet-ios .action-sheet-button.activated { + margin-top: -0.55px; + border-top: 0.55px solid #ebebeb; + border-bottom-color: #ebebeb; + background: #ebebeb; +} + +.action-sheet-ios .action-sheet-selected { + font-weight: bold; + background: #fff; +} + +.action-sheet-ios .action-sheet-destructive { + color: #f53d3d; +} + +.action-sheet-ios .action-sheet-cancel { + font-weight: 600; + background: #fff; +} + +.action-sheet-md .action-sheet-container { + padding: .8rem 0; + background: #fafafa; +} + +.action-sheet-md .action-sheet-title { + padding: 11px 16px 17px; + font-size: 1.6rem; + text-align: left; + color: #757575; +} + +.action-sheet-md .action-sheet-button { + position: relative; + overflow: hidden; + padding: 0 16px; + min-height: 4.8rem; + font-size: 1.6rem; + text-align: left; + color: #222; + background: transparent; +} + +.action-sheet-md .action-sheet-button.activated { + background: #f1f1f1; +} + +.action-sheet-md .action-sheet-icon { + margin: 0 32px 0 0; + padding: 0; + width: 2.3rem; + font-size: 2.4rem; + text-align: center; + vertical-align: middle; +} + +.action-sheet-md .action-sheet-group { + overflow: hidden; +} + +.action-sheet-md .action-sheet-group .button-inner { + -webkit-justify-content: flex-start; + -ms-flex-pack: start; + justify-content: flex-start; +} + +.action-sheet-md .action-sheet-selected { + font-weight: bold; +} + +.action-sheet-wp .action-sheet-wrapper { + box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2); +} + +.action-sheet-wp .action-sheet-title { + padding: 11px 16px 17px; + font-size: 2rem; + text-align: left; + color: #4d4d4d; +} + +.action-sheet-wp .action-sheet-button { + padding: 0 16px; + min-height: 4.8rem; + font-size: 1.5rem; + text-align: left; + color: #4d4d4d; + background: transparent; +} + +.action-sheet-wp .action-sheet-button.activated { + background: #aaa; +} + +.action-sheet-wp .action-sheet-icon { + margin: 0 20px 0 0; + padding: 0; + width: 2.3rem; + font-size: 2.4rem; + text-align: center; + vertical-align: middle; +} + +.action-sheet-wp .action-sheet-container { + padding: .8rem 0; + background: #fff; +} + +.action-sheet-wp .action-sheet-group .button-inner { + -webkit-justify-content: flex-start; + -ms-flex-pack: start; + justify-content: flex-start; +} + +.action-sheet-wp .action-sheet-selected { + font-weight: bold; +} + +.action-sheet-wp .action-sheet-cancel { + background: transparent; +} + +ion-alert { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1000; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; + contain: strict; +} + +ion-alert.alert-top { + -webkit-align-items: flex-start; + -ms-flex-align: start; + align-items: flex-start; + padding-top: 50px; +} + +ion-alert input { + width: 100%; +} + +.alert-wrapper { + z-index: 10; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; + min-width: 250px; + max-height: 90%; + opacity: 0; + contain: content; +} + +.alert-title { + margin: 0; + padding: 0; +} + +.alert-sub-title { + margin: 5px 0 0; + padding: 0; + font-weight: normal; +} + +.alert-message { + overflow-y: scroll; + -webkit-overflow-scrolling: touch; +} + +.alert-input { + padding: 10px 0; + border: 0; + background: inherit; +} + +.alert-input::-moz-placeholder { + color: #999; +} + +.alert-input:-ms-input-placeholder { + color: #999; +} + +.alert-input::-webkit-input-placeholder { + text-indent: 0; + color: #999; +} + +.alert-button-group { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row; +} + +.alert-button-group-vertical { + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; + -webkit-flex-wrap: nowrap; + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; +} + +.alert-button { + z-index: 0; + display: block; + margin: 0; + font-size: 14px; + line-height: 20px; +} + +.alert-tappable { + -moz-appearance: none; + -ms-appearance: none; + -webkit-appearance: none; + appearance: none; + margin: 0; + padding: 0; + width: 100%; + font-size: inherit; + line-height: initial; + text-align: left; + background: transparent; +} + +.alert-ios .alert-wrapper { + overflow: hidden; + max-width: 270px; + border-radius: 13px; + background-color: #f8f8f8; + box-shadow: none; +} + +.alert-ios .alert-head { + padding: 12px 16px 7px; + text-align: center; +} + +.alert-ios .alert-title { + margin-top: 8px; + font-size: 17px; + font-weight: 600; +} + +.alert-ios .alert-sub-title { + font-size: 14px; + color: #666; +} + +.alert-ios .alert-message, +.alert-ios .alert-input-group { + padding: 0 16px 21px; + font-size: 13px; + text-align: center; + color: inherit; +} + +.alert-ios .alert-message { + max-height: 240px; +} + +.alert-ios .alert-message:empty { + padding: 0 0 12px 0; +} + +.alert-ios .alert-input { + -moz-appearance: none; + -ms-appearance: none; + -webkit-appearance: none; + appearance: none; + margin-top: 10px; + padding: 6px; + border: 0.55px solid #ccc; + border-radius: 4px; + background-color: #fff; +} + +.alert-ios .alert-radio-group, +.alert-ios .alert-checkbox-group { + overflow: scroll; + max-height: 240px; + border-top: 0.55px solid #dbdbdf; + -webkit-overflow-scrolling: touch; +} + +.alert-ios .alert-tappable { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + min-height: 44px; +} + +.alert-ios .alert-radio-label { + overflow: hidden; + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + -webkit-order: 0; + -ms-flex-order: 0; + order: 0; + padding: 13px; + text-overflow: ellipsis; + white-space: nowrap; +} + +.alert-ios [aria-checked=true] .alert-radio-label { + color: #387ef5; +} + +.alert-ios .alert-radio-icon { + position: relative; + -webkit-order: 1; + -ms-flex-order: 1; + order: 1; + min-width: 30px; +} + +.alert-ios [aria-checked=true] .alert-radio-inner { + position: absolute; + top: -7px; + left: 7px; + width: 6px; + height: 12px; + border-width: 2px; + border-top-width: 0; + border-left-width: 0; + border-style: solid; + border-color: #387ef5; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); +} + +.alert-ios .alert-checkbox-label { + overflow: hidden; + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + padding: 13px; + text-overflow: ellipsis; + white-space: nowrap; +} + +.alert-ios [aria-checked=true] .alert-checkbox-label { + color: initial; +} + +.alert-ios .alert-checkbox-icon { + position: relative; + margin: 10px 6px 10px 16px; + width: 21px; + height: 21px; + border-width: 0.55px; + border-style: solid; + border-radius: 50%; + border-color: #c8c7cc; + background-color: #fff; +} + +.alert-ios [aria-checked=true] .alert-checkbox-icon { + border-color: #387ef5; + background-color: #387ef5; +} + +.alert-ios [aria-checked=true] .alert-checkbox-inner { + position: absolute; + top: 4px; + left: 7px; + width: 4px; + height: 9px; + border-width: 0.55px; + border-top-width: 0; + border-left-width: 0; + border-style: solid; + border-color: #fff; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); +} + +.alert-ios .alert-button-group { + -webkit-flex-wrap: wrap; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-right: -0.55px; +} + +.alert-ios .alert-button { + overflow: hidden; + -webkit-flex: 1 1 auto; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + margin: 0; + min-width: 50%; + height: 44px; + border-top: 0.55px solid #dbdbdf; + border-right: 0.55px solid #dbdbdf; + border-radius: 0; + font-size: 17px; + color: #387ef5; + background-color: transparent; +} + +.alert-ios .alert-button:last-child { + border-right: 0; + font-weight: bold; +} + +.alert-ios .alert-button.activated { + background-color: #e9e9e9; +} + +.alert-md .alert-wrapper { + max-width: 280px; + border-radius: 2px; + background-color: #fafafa; + box-shadow: 0 16px 20px rgba(0, 0, 0, 0.4); +} + +.alert-md .alert-head { + padding: 24px 24px 20px 24px; + text-align: left; +} + +.alert-md .alert-title { + font-size: 22px; +} + +.alert-md .alert-sub-title { + font-size: 16px; +} + +.alert-md .alert-message, +.alert-md .alert-input-group { + padding: 0 24px 24px 24px; + color: rgba(0, 0, 0, 0.5); +} + +.alert-md .alert-message { + max-height: 240px; + font-size: 15px; +} + +.alert-md .alert-message:empty { + padding: 0; +} + +.alert-md .alert-input { + margin: 5px 0 5px 0; + border-bottom: 1px solid #dedede; + color: #000; +} + +.alert-md .alert-input:focus { + margin-bottom: 4px; + border-bottom: 2px solid #387ef5; +} + +.alert-md .alert-radio-group, +.alert-md .alert-checkbox-group { + position: relative; + overflow: auto; + max-height: 240px; + border-top: 1px solid #dedede; + border-bottom: 1px solid #dedede; +} + +.alert-md .alert-tappable { + position: relative; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + overflow: hidden; + min-height: 4.4rem; +} + +.alert-md .alert-radio-label { + overflow: hidden; + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + padding: 13px 26px; + text-overflow: ellipsis; + white-space: nowrap; +} + +.alert-md .alert-radio-icon { + position: relative; + top: 0; + left: 13px; + display: block; + width: 16px; + height: 16px; + border-width: 2px; + border-style: solid; + border-radius: 50%; + border-color: #787878; +} + +.alert-md .alert-radio-inner { + position: absolute; + top: 2px; + left: 2px; + width: 8px; + height: 8px; + border-radius: 50%; + background-color: #387ef5; + -webkit-transform: scale3d(0, 0, 0); + transform: scale3d(0, 0, 0); + transition: -webkit-transform 280ms cubic-bezier(0.4, 0, 0.2, 1); + transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1); + transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 280ms cubic-bezier(0.4, 0, 0.2, 1); +} + +.alert-md [aria-checked=true] .alert-radio-label { + color: #387ef5; +} + +.alert-md [aria-checked=true] .alert-radio-icon { + border-color: #387ef5; +} + +.alert-md [aria-checked=true] .alert-radio-inner { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); +} + +.alert-md .alert-checkbox-label { + overflow: hidden; + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + padding: 13px 26px; + text-overflow: ellipsis; + white-space: nowrap; +} + +.alert-md [aria-checked=true] .alert-checkbox-label { + color: initial; +} + +.alert-md .alert-checkbox-icon { + position: relative; + top: 0; + left: 13px; + width: 16px; + height: 16px; + border-width: 2px; + border-style: solid; + border-radius: 2px; + border-color: #787878; +} + +.alert-md [aria-checked=true] .alert-checkbox-icon { + border-color: #387ef5; + background-color: #387ef5; +} + +.alert-md [aria-checked=true] .alert-checkbox-inner { + position: absolute; + top: 0; + left: 3px; + width: 6px; + height: 10px; + border-width: 2px; + border-top-width: 0; + border-left-width: 0; + border-style: solid; + border-color: #fff; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); +} + +.alert-md .alert-button-group { + -webkit-flex-wrap: wrap-reverse; + -ms-flex-wrap: wrap-reverse; + flex-wrap: wrap-reverse; + -webkit-justify-content: flex-end; + -ms-flex-pack: end; + justify-content: flex-end; + padding: 8px 8px 8px 24px; +} + +.alert-md .alert-button { + position: relative; + overflow: hidden; + margin: 0 8px 0 0; + padding: 10px; + border-radius: 2px; + font-weight: 500; + text-align: right; + text-transform: uppercase; + color: #387ef5; + background-color: transparent; +} + +.alert-md .alert-button.activated { + background-color: rgba(158, 158, 158, 0.2); +} + +.alert-md .alert-button .button-inner { + -webkit-justify-content: flex-end; + -ms-flex-pack: end; + justify-content: flex-end; +} + +.alert-wp ion-backdrop { + background: #fff; +} + +.alert-wp .alert-wrapper { + width: 100%; + max-width: 520px; + border: 1px solid #387ef5; + border-radius: 0; + background: #e6e6e6; +} + +.alert-wp .alert-head { + padding: 20px 22px 5px 22px; + text-align: left; +} + +.alert-wp .alert-title { + font-size: 20px; + font-weight: 400; +} + +.alert-wp .alert-sub-title { + font-size: 16px; +} + +.alert-wp .alert-message, +.alert-wp .alert-input-group { + padding: 0 22px 8px 22px; + color: #000; +} + +.alert-wp .alert-message { + max-height: 240px; + font-size: 13px; +} + +.alert-wp .alert-message:empty { + padding: 0; +} + +.alert-wp .alert-input { + margin: 5px 0 5px 0; + padding: 0 8px; + border: 2px solid rgba(0, 0, 0, 0.5); + line-height: 3rem; + color: #000; +} + +.alert-wp .alert-input:focus { + border-color: #387ef5; +} + +.alert-wp .alert-radio-group, +.alert-wp .alert-checkbox-group { + position: relative; + overflow: auto; + max-height: 240px; +} + +.alert-wp .alert-tappable { + position: relative; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + overflow: hidden; + min-height: 4.4rem; +} + +.alert-wp .alert-radio-label { + overflow: hidden; + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + padding: 13px 26px; + text-overflow: ellipsis; + white-space: nowrap; +} + +.alert-wp .alert-radio-icon { + position: relative; + top: 0; + left: 13px; + display: block; + margin: 0; + width: 16px; + height: 16px; + border-width: 2px; + border-style: solid; + border-radius: 50%; + border-color: rgba(0, 0, 0, 0.5); +} + +.alert-wp .alert-radio-inner { + position: absolute; + top: 2px; + left: 2px; + display: none; + width: 8px; + height: 8px; + border-radius: 50%; + background: #387ef5; +} + +.alert-wp [aria-checked=true] .alert-radio-label { + color: #000; +} + +.alert-wp [aria-checked=true] .alert-radio-icon { + border-color: rgba(0, 0, 0, 0.5); +} + +.alert-wp [aria-checked=true] .alert-radio-inner { + display: block; +} + +.alert-wp .alert-checkbox-label { + overflow: hidden; + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + padding: 13px 26px; + text-overflow: ellipsis; + white-space: nowrap; +} + +.alert-wp [aria-checked=true] .alert-checkbox-label { + color: initial; +} + +.alert-wp .alert-checkbox-icon { + position: relative; + top: 0; + left: 13px; + width: 16px; + height: 16px; + border-width: 2px; + border-style: solid; + border-radius: 0; + border-color: rgba(0, 0, 0, 0.5); + background: transparent; +} + +.alert-wp [aria-checked=true] .alert-checkbox-icon { + border-color: #387ef5; + background: #387ef5; +} + +.alert-wp [aria-checked=true] .alert-checkbox-inner { + position: absolute; + top: -2px; + left: 3px; + width: 6px; + height: 12px; + border-width: 1px; + border-top-width: 0; + border-left-width: 0; + border-style: solid; + border-color: #fff; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); +} + +.alert-wp .alert-button-group { + -webkit-flex-wrap: wrap-reverse; + -ms-flex-wrap: wrap-reverse; + flex-wrap: wrap-reverse; + -webkit-justify-content: flex-end; + -ms-flex-pack: end; + justify-content: flex-end; + padding: 20px 22px 20px 22px; +} + +.alert-wp .alert-button-group-vertical .alert-button { + margin-top: 5px; + width: 100%; +} + +.alert-wp .alert-button-group-vertical .alert-button:first-child:not(:only-child) { + margin-top: 0; + margin-right: 0; +} + +.alert-wp .alert-button { + padding: 5px; + width: 49.5%; + border-radius: 0; + font-weight: 400; + color: #000; + background: #b8b8b8; +} + +.alert-wp .alert-button:first-child:not(:only-child) { + margin-right: 1%; +} + +.alert-wp .alert-button.activated { + background: darkgray; +} + +audio, +canvas, +progress, +video { + vertical-align: baseline; +} + +audio:not([controls]) { + display: none; + height: 0; +} + +b, +strong { + font-weight: bold; +} + +img { + max-width: 100%; + border: 0; +} + +svg:not(:root) { + overflow: hidden; +} + +figure { + margin: 1em 40px; +} + +hr { + height: 1px; + border-width: 0; + box-sizing: content-box; +} + +pre { + overflow: auto; +} + +code, +kbd, +pre, +samp { + font-family: monospace, monospace; + font-size: 1em; +} + +label, +input, +select, +textarea { + font-family: inherit; + line-height: normal; +} + +textarea { + overflow: auto; + height: auto; + font: inherit; + color: inherit; +} + +textarea::-webkit-input-placeholder { + padding-left: 2px; +} + +textarea:-ms-input-placeholder { + padding-left: 2px; +} + +textarea::placeholder { + padding-left: 2px; +} + +form, +input, +optgroup, +select { + margin: 0; + font: inherit; + color: inherit; +} + +html input[type="button"], +input[type="reset"], +input[type="submit"] { + cursor: pointer; + -webkit-appearance: button; +} + +a, +a div, +a span, +a ion-icon, +a ion-label, +button, +button div, +button span, +button ion-icon, +button ion-label, +[tappable], +[tappable] div, +[tappable] span, +[tappable] ion-icon, +[tappable] ion-label, +input, +textarea { + -ms-touch-action: manipulation; + touch-action: manipulation; +} + +a ion-label, +button ion-label { + pointer-events: none; +} + +button { + border: 0; + font-family: inherit; + font-style: inherit; + font-variant: inherit; + line-height: 1; + text-transform: none; + cursor: pointer; + -webkit-appearance: button; +} + +[tappable] { + cursor: pointer; +} + +a[disabled], +button[disabled], +html input[disabled] { + cursor: default; +} + +button::-moz-focus-inner, +input::-moz-focus-inner { + padding: 0; + border: 0; +} + +input[type="checkbox"], +input[type="radio"] { + padding: 0; + box-sizing: border-box; +} + +input[type="number"]::-webkit-inner-spin-button, +input[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +input[type="search"]::-webkit-search-cancel-button, +input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +table { + border-collapse: collapse; + border-spacing: 0; +} + +td, +th { + padding: 0; +} + +.hide, +[hidden], +template { + display: none !important; +} + +.sticky { + position: -webkit-sticky; + position: sticky; + top: 0; +} + +:focus, +:active { + outline: none; +} + +.focus-outline :focus { + outline: thin dotted; + outline-offset: -1px; +} + +.focus-outline button:focus, +.focus-outline [ion-button]:focus { + border-color: #51a7e8; + outline: 2px solid #51a7e8; + box-shadow: 0 0 8px 1px #51a7e8; +} + +ion-input :focus { + outline: none; +} + +.click-block { + display: none; +} + +.click-block-enabled { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 99999; + display: block; + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0) translateY(1px); + transform: translate3d(0, -100%, 0) translateY(1px); + contain: strict; +} + +.click-block-active { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); +} + +* { + box-sizing: border-box; + -webkit-tap-highlight-color: transparent; + -webkit-tap-highlight-color: transparent; + -webkit-touch-callout: none; +} + +html { + width: 100%; + height: 100%; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; + text-size-adjust: 100%; +} + +body { + position: fixed; + overflow: hidden; + margin: 0; + padding: 0; + width: 100%; + max-width: 100%; + height: 100%; + max-height: 100%; + -webkit-font-smoothing: antialiased; + font-smoothing: antialiased; + text-rendering: optimizeLegibility; + -webkit-user-drag: none; + -ms-content-zooming: none; + -ms-touch-action: manipulation; + touch-action: manipulation; + word-wrap: break-word; + -webkit-text-size-adjust: none; + -ms-text-size-adjust: none; + text-size-adjust: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +ion-app, +ion-nav, +ion-tab, +ion-tabs, +.app-root { + position: absolute; + top: 0; + left: 0; + z-index: 0; + display: block; + width: 100%; + height: 100%; +} + +ion-nav, +ion-tab, +ion-tabs { + overflow: hidden; +} + +ion-tab { + display: none; +} + +ion-tab.show-tab { + display: block; +} + +ion-app, +ion-nav, +ion-tab, +ion-tabs, +.app-root, +.ion-page { + contain: strict; +} + +.ion-page { + position: absolute; + top: 0; + left: 0; + display: block; + width: 100%; + height: 100%; + opacity: 0; +} + +.ion-page.show-page { + opacity: 1; +} + +ion-header { + position: absolute; + top: 0; + left: 0; + z-index: 10; + display: block; + width: 100%; +} + +ion-footer { + position: absolute; + bottom: 0; + left: 0; + z-index: 10; + display: block; + width: 100%; +} + +[app-viewport], +[overlay-portal], +[nav-viewport], +[tab-portal], +.nav-decor { + display: none; +} + +ion-app.ios { + font-family: -apple-system, "Helvetica Neue", "Roboto", sans-serif; + font-size: 1.4rem; + background-color: #fff; +} + +ion-app.md { + font-family: "Roboto", "Helvetica Neue", sans-serif; + font-size: 1.4rem; + background-color: #fff; +} + +ion-app.wp { + font-family: "Segoe UI", "Noto Sans", sans-serif; + font-size: 1.4rem; + background-color: #fff; +} + +ion-backdrop { + position: absolute; + top: 0; + left: 0; + z-index: 2; + display: block; + width: 100%; + height: 100%; + background-color: #000; + opacity: .01; + -webkit-transform: translateZ(0); + transform: translateZ(0); +} + +ion-backdrop.backdrop-no-tappable { + cursor: auto; +} + +ion-badge { + display: inline-block; + padding: 3px 8px; + min-width: 10px; + font-size: 1.3rem; + font-weight: bold; + line-height: 1; + text-align: center; + white-space: nowrap; + vertical-align: baseline; +} + +ion-badge:empty { + display: none; +} + +.badge-ios { + border-radius: 10px; + color: #fff; + background-color: #387ef5; +} + +.badge-ios-primary { + color: #fff; + background-color: #387ef5; +} + +.badge-ios-secondary { + color: #fff; + background-color: #32db64; +} + +.badge-ios-danger { + color: #fff; + background-color: #f53d3d; +} + +.badge-ios-light { + color: #000; + background-color: #f4f4f4; +} + +.badge-ios-dark { + color: #fff; + background-color: #222; +} + +.badge-md { + border-radius: 4px; + color: #fff; + background-color: #387ef5; +} + +.badge-md-primary { + color: #fff; + background-color: #387ef5; +} + +.badge-md-secondary { + color: #fff; + background-color: #32db64; +} + +.badge-md-danger { + color: #fff; + background-color: #f53d3d; +} + +.badge-md-light { + color: #000; + background-color: #f4f4f4; +} + +.badge-md-dark { + color: #fff; + background-color: #222; +} + +.badge-wp { + border-radius: 0; + color: #fff; + background-color: #387ef5; +} + +.badge-wp-primary { + color: #fff; + background-color: #387ef5; +} + +.badge-wp-secondary { + color: #fff; + background-color: #32db64; +} + +.badge-wp-danger { + color: #fff; + background-color: #f53d3d; +} + +.badge-wp-light { + color: #000; + background-color: #f4f4f4; +} + +.badge-wp-dark { + color: #fff; + background-color: #222; +} + +.button { + -moz-appearance: none; + -ms-appearance: none; + -webkit-appearance: none; + appearance: none; + position: relative; + z-index: 0; + display: inline-block; + text-align: center; + text-overflow: ellipsis; + text-transform: none; + white-space: nowrap; + cursor: pointer; + vertical-align: top; + vertical-align: -webkit-baseline-middle; + transition: background-color, opacity 100ms linear; + -webkit-font-kerning: none; + font-kerning: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + contain: content; +} + +.button-inner { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-flow: row nowrap; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -webkit-flex-shrink: 0; + -ms-flex-negative: 0; + flex-shrink: 0; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; + width: 100%; + height: 100%; +} + +[ion-button] { + text-decoration: none; +} + +a[disabled], +button[disabled], +[ion-button][disabled] { + cursor: default; + opacity: .4; + pointer-events: none; +} + +.button-block { + display: block; + clear: both; + width: 100%; + contain: strict; +} + +.button-block::after { + clear: both; +} + +.button-full { + display: block; + width: 100%; + contain: strict; +} + +.button-full.button-outline { + border-right-width: 0; + border-left-width: 0; + border-radius: 0; +} + +[icon-left] ion-icon { + font-size: 1.4em; + line-height: .67; + pointer-events: none; + padding-right: .3em; +} + +[icon-right] ion-icon { + font-size: 1.4em; + line-height: .67; + pointer-events: none; + padding-left: .4em; +} + +.button[icon-only] { + padding: 0; + min-width: .9em; +} + +[icon-only] ion-icon { + padding: 0 .5em; + font-size: 1.8em; + line-height: .67; + pointer-events: none; +} + +.button-ios { + margin: 0.4rem 0.2rem; + padding: 0 1em; + height: 2.8em; + border-radius: 4px; + font-size: 1.6rem; + color: #fff; + background-color: #387ef5; +} + +.button-ios.activated { + background-color: #3474e1; + opacity: 1; +} + +.button-ios:hover:not(.disable-hover) { + opacity: 0.8; +} + +.button-large-ios { + padding: 0 1em; + height: 2.8em; + font-size: 2rem; +} + +.button-small-ios { + padding: 0 0.9em; + height: 2.1em; + font-size: 1.3rem; +} + +.button-small-ios[icon-only] ion-icon { + font-size: 1.3em; +} + +.button-block-ios { + margin-right: 0; + margin-left: 0; +} + +.button-full-ios { + margin-right: 0; + margin-left: 0; + border-right-width: 0; + border-left-width: 0; + border-radius: 0; +} + +.button-outline-ios { + border-width: 1px; + border-style: solid; + border-radius: 4px; + border-color: #387ef5; + color: #387ef5; + background-color: transparent; +} + +.button-outline-ios.activated { + color: #fff; + background-color: #387ef5; + opacity: 1; +} + +.button-clear-ios { + border-color: transparent; + color: #387ef5; + background-color: transparent; +} + +.button-clear-ios.activated { + background-color: transparent; + opacity: 0.4; +} + +.button-clear-ios:hover:not(.disable-hover) { + color: #387ef5; + opacity: 0.6; +} + +.button-round-ios { + padding: 0 2.6rem; + border-radius: 64px; +} + +.button-ios-primary { + color: #fff; + background-color: #387ef5; +} + +.button-ios-primary.activated { + background-color: #3474e1; +} + +.button-outline-ios-primary { + border-color: #387ef5; + color: #387ef5; + background-color: transparent; +} + +.button-outline-ios-primary.activated { + color: #fff; + background-color: #387ef5; +} + +.button-clear-ios-primary { + border-color: transparent; + color: #387ef5; + background-color: transparent; +} + +.button-clear-ios-primary.activated { + opacity: 0.4; +} + +.button-clear-ios-primary:hover:not(.disable-hover) { + color: #387ef5; +} + +.button-ios-secondary { + color: #fff; + background-color: #32db64; +} + +.button-ios-secondary.activated { + background-color: #2ec95c; +} + +.button-outline-ios-secondary { + border-color: #32db64; + color: #32db64; + background-color: transparent; +} + +.button-outline-ios-secondary.activated { + color: #fff; + background-color: #32db64; +} + +.button-clear-ios-secondary { + border-color: transparent; + color: #32db64; + background-color: transparent; +} + +.button-clear-ios-secondary.activated { + opacity: 0.4; +} + +.button-clear-ios-secondary:hover:not(.disable-hover) { + color: #32db64; +} + +.button-ios-danger { + color: #fff; + background-color: #f53d3d; +} + +.button-ios-danger.activated { + background-color: #e13838; +} + +.button-outline-ios-danger { + border-color: #f53d3d; + color: #f53d3d; + background-color: transparent; +} + +.button-outline-ios-danger.activated { + color: #fff; + background-color: #f53d3d; +} + +.button-clear-ios-danger { + border-color: transparent; + color: #f53d3d; + background-color: transparent; +} + +.button-clear-ios-danger.activated { + opacity: 0.4; +} + +.button-clear-ios-danger:hover:not(.disable-hover) { + color: #f53d3d; +} + +.button-ios-light { + color: #000; + background-color: #f4f4f4; +} + +.button-ios-light.activated { + background-color: #e0e0e0; +} + +.button-outline-ios-light { + border-color: #f4f4f4; + color: #f4f4f4; + background-color: transparent; +} + +.button-outline-ios-light.activated { + color: #000; + background-color: #f4f4f4; +} + +.button-clear-ios-light { + border-color: transparent; + color: #f4f4f4; + background-color: transparent; +} + +.button-clear-ios-light.activated { + opacity: 0.4; +} + +.button-clear-ios-light:hover:not(.disable-hover) { + color: #f4f4f4; +} + +.button-ios-dark { + color: #fff; + background-color: #222; +} + +.button-ios-dark.activated { + background-color: #343434; +} + +.button-outline-ios-dark { + border-color: #222; + color: #222; + background-color: transparent; +} + +.button-outline-ios-dark.activated { + color: #fff; + background-color: #222; +} + +.button-clear-ios-dark { + border-color: transparent; + color: #222; + background-color: transparent; +} + +.button-clear-ios-dark.activated { + opacity: 0.4; +} + +.button-clear-ios-dark:hover:not(.disable-hover) { + color: #222; +} + +.button-strong-ios { + font-weight: 600; +} + +.button-md { + overflow: hidden; + margin: 0.4rem 0.2rem; + padding: 0 1.1em; + height: 3.6rem; + border-radius: 2px; + font-size: 1.4rem; + font-weight: 500; + text-transform: uppercase; + color: #fff; + background-color: #387ef5; + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1); +} + +.button-md:hover:not(.disable-hover) { + background-color: #387ef5; +} + +.button-md.activated { + background-color: #3474e1; + box-shadow: 0 3px 5px rgba(0, 0, 0, 0.14), 0 3px 5px rgba(0, 0, 0, 0.21); +} + +.button-md .button-effect { + background-color: #fff; +} + +.button-large-md { + padding: 0 1em; + height: 2.8em; + font-size: 2rem; +} + +.button-small-md { + padding: 0 0.9em; + height: 2.1em; + font-size: 1.3rem; +} + +.button-small-md[icon-only] ion-icon { + font-size: 1.4em; +} + +.button-block-md { + margin-right: 0; + margin-left: 0; +} + +.button-full-md { + margin-right: 0; + margin-left: 0; + border-right-width: 0; + border-left-width: 0; + border-radius: 0; +} + +.button-outline-md { + border-width: 1px; + border-style: solid; + border-color: #387ef5; + color: #387ef5; + background-color: transparent; + box-shadow: none; +} + +.button-outline-md:hover:not(.disable-hover) { + background-color: rgba(158, 158, 158, 0.1); +} + +.button-outline-md.activated { + background-color: transparent; + box-shadow: none; + opacity: 1; +} + +.button-outline-md .button-effect { + background-color: #387ef5; +} + +.button-clear-md { + border-color: transparent; + color: #387ef5; + background-color: transparent; + box-shadow: none; + opacity: 1; +} + +.button-clear-md.activated { + background-color: rgba(158, 158, 158, 0.2); + box-shadow: none; +} + +.button-clear-md:hover:not(.disable-hover) { + background-color: rgba(158, 158, 158, 0.1); +} + +.button-clear-md .button-effect { + background-color: #999; +} + +.button-round-md { + padding: 0 2.6rem; + border-radius: 64px; +} + +.button-md [icon-only] { + padding: 0; +} + +.button-effect { + position: absolute; + top: 0; + left: 0; + z-index: 0; + display: none; + border-radius: 50%; + background-color: #555; + opacity: .2; + -webkit-transform-origin: center center; + transform-origin: center center; + transition-timing-function: ease-in-out; + pointer-events: none; +} + +.md .button-effect { + display: block; +} + +.button-md-primary { + color: #fff; + background-color: #387ef5; +} + +.button-md-primary:hover:not(.disable-hover) { + background-color: #387ef5; +} + +.button-md-primary.activated { + background-color: #3474e1; + opacity: 1; +} + +.button-md-primary .button-effect { + background-color: #fff; +} + +.button-outline-md-primary { + border-color: #3578e9; + color: #3578e9; + background-color: transparent; +} + +.button-outline-md-primary:hover:not(.disable-hover) { + background-color: rgba(158, 158, 158, 0.1); +} + +.button-outline-md-primary.activated { + background-color: transparent; +} + +.button-outline-md-primary .button-effect { + background-color: #3578e9; +} + +.button-clear-md-primary { + border-color: transparent; + color: #387ef5; + background-color: transparent; +} + +.button-clear-md-primary.activated { + background-color: rgba(158, 158, 158, 0.2); + box-shadow: none; +} + +.button-clear-md-primary:hover:not(.disable-hover) { + color: #387ef5; +} + +.button-md-secondary { + color: #fff; + background-color: #32db64; +} + +.button-md-secondary:hover:not(.disable-hover) { + background-color: #32db64; +} + +.button-md-secondary.activated { + background-color: #2ec95c; + opacity: 1; +} + +.button-md-secondary .button-effect { + background-color: #fff; +} + +.button-outline-md-secondary { + border-color: #30d05f; + color: #30d05f; + background-color: transparent; +} + +.button-outline-md-secondary:hover:not(.disable-hover) { + background-color: rgba(158, 158, 158, 0.1); +} + +.button-outline-md-secondary.activated { + background-color: transparent; +} + +.button-outline-md-secondary .button-effect { + background-color: #30d05f; +} + +.button-clear-md-secondary { + border-color: transparent; + color: #32db64; + background-color: transparent; +} + +.button-clear-md-secondary.activated { + background-color: rgba(158, 158, 158, 0.2); + box-shadow: none; +} + +.button-clear-md-secondary:hover:not(.disable-hover) { + color: #32db64; +} + +.button-md-danger { + color: #fff; + background-color: #f53d3d; +} + +.button-md-danger:hover:not(.disable-hover) { + background-color: #f53d3d; +} + +.button-md-danger.activated { + background-color: #e13838; + opacity: 1; +} + +.button-md-danger .button-effect { + background-color: #fff; +} + +.button-outline-md-danger { + border-color: #e93a3a; + color: #e93a3a; + background-color: transparent; +} + +.button-outline-md-danger:hover:not(.disable-hover) { + background-color: rgba(158, 158, 158, 0.1); +} + +.button-outline-md-danger.activated { + background-color: transparent; +} + +.button-outline-md-danger .button-effect { + background-color: #e93a3a; +} + +.button-clear-md-danger { + border-color: transparent; + color: #f53d3d; + background-color: transparent; +} + +.button-clear-md-danger.activated { + background-color: rgba(158, 158, 158, 0.2); + box-shadow: none; +} + +.button-clear-md-danger:hover:not(.disable-hover) { + color: #f53d3d; +} + +.button-md-light { + color: #000; + background-color: #f4f4f4; +} + +.button-md-light:hover:not(.disable-hover) { + background-color: #f4f4f4; +} + +.button-md-light.activated { + background-color: #e0e0e0; + opacity: 1; +} + +.button-md-light .button-effect { + background-color: #000; +} + +.button-outline-md-light { + border-color: #e8e8e8; + color: #e8e8e8; + background-color: transparent; +} + +.button-outline-md-light:hover:not(.disable-hover) { + background-color: rgba(158, 158, 158, 0.1); +} + +.button-outline-md-light.activated { + background-color: transparent; +} + +.button-outline-md-light .button-effect { + background-color: #e8e8e8; +} + +.button-clear-md-light { + border-color: transparent; + color: #f4f4f4; + background-color: transparent; +} + +.button-clear-md-light.activated { + background-color: rgba(158, 158, 158, 0.2); + box-shadow: none; +} + +.button-clear-md-light:hover:not(.disable-hover) { + color: #f4f4f4; +} + +.button-md-dark { + color: #fff; + background-color: #222; +} + +.button-md-dark:hover:not(.disable-hover) { + background-color: #222; +} + +.button-md-dark.activated { + background-color: #343434; + opacity: 1; +} + +.button-md-dark .button-effect { + background-color: #fff; +} + +.button-outline-md-dark { + border-color: #2d2d2d; + color: #2d2d2d; + background-color: transparent; +} + +.button-outline-md-dark:hover:not(.disable-hover) { + background-color: rgba(158, 158, 158, 0.1); +} + +.button-outline-md-dark.activated { + background-color: transparent; +} + +.button-outline-md-dark .button-effect { + background-color: #2d2d2d; +} + +.button-clear-md-dark { + border-color: transparent; + color: #222; + background-color: transparent; +} + +.button-clear-md-dark.activated { + background-color: rgba(158, 158, 158, 0.2); + box-shadow: none; +} + +.button-clear-md-dark:hover:not(.disable-hover) { + color: #222; +} + +.button-strong-md { + font-weight: bold; +} + +.button-wp { + margin: 0.4rem 0.2rem; + padding: 0 1.1em; + height: 3.6rem; + border: 3px solid transparent; + border-radius: 0; + font-size: 1.4rem; + color: #fff; + background-color: #387ef5; +} + +.button-wp:hover:not(.disable-hover) { + border-color: #3474e1; + background-color: #387ef5; +} + +.button-wp.activated { + background-color: #3474e1; +} + +.button-large-wp { + padding: 0 1em; + height: 2.8em; + font-size: 2rem; +} + +.button-small-wp { + padding: 0 0.9em; + height: 2.1em; + font-size: 1.3rem; +} + +.button-small-wp[icon-only] ion-icon { + font-size: 1.4em; +} + +.button-block-wp { + margin-right: 0; + margin-left: 0; +} + +.button-full-wp { + margin-right: 0; + margin-left: 0; + border-right-width: 0; + border-left-width: 0; + border-radius: 0; +} + +.button-outline-wp { + border-width: 1px; + border-style: solid; + border-color: #387ef5; + color: #387ef5; + background-color: transparent; +} + +.button-outline-wp:hover:not(.disable-hover) { + background-color: rgba(158, 158, 158, 0.1); +} + +.button-outline-wp.activated { + background-color: rgba(56, 126, 245, 0.16); +} + +.button-clear-wp { + color: #387ef5; + background-color: transparent; +} + +.button-clear-wp.activated { + background-color: rgba(158, 158, 158, 0.2); +} + +.button-clear-wp:hover:not(.disable-hover) { + background-color: rgba(158, 158, 158, 0.1); +} + +.button-round-wp { + padding: 0 2.6rem; + border-radius: 64px; +} + +.button-wp [icon-only] { + padding: 0; +} + +.button-wp-primary { + color: #fff; + background-color: #387ef5; +} + +.button-wp-primary:hover:not(.disable-hover) { + border-color: #3474e1; + background-color: #387ef5; +} + +.button-wp-primary.activated { + background-color: #3474e1; +} + +.button-outline-wp-primary { + border-color: #3578e9; + color: #3578e9; + background-color: transparent; +} + +.button-outline-wp-primary:hover:not(.disable-hover) { + border-color: #3578e9; + background-color: rgba(158, 158, 158, 0.1); +} + +.button-outline-wp-primary.activated { + background-color: rgba(53, 120, 233, 0.16); +} + +.button-clear-wp-primary { + color: #387ef5; + background-color: transparent; +} + +.button-clear-wp-primary.activated { + background-color: rgba(158, 158, 158, 0.2); +} + +.button-clear-wp-primary:hover:not(.disable-hover) { + color: #387ef5; +} + +.button-wp-secondary { + color: #fff; + background-color: #32db64; +} + +.button-wp-secondary:hover:not(.disable-hover) { + border-color: #2ec95c; + background-color: #32db64; +} + +.button-wp-secondary.activated { + background-color: #2ec95c; +} + +.button-outline-wp-secondary { + border-color: #30d05f; + color: #30d05f; + background-color: transparent; +} + +.button-outline-wp-secondary:hover:not(.disable-hover) { + border-color: #30d05f; + background-color: rgba(158, 158, 158, 0.1); +} + +.button-outline-wp-secondary.activated { + background-color: rgba(48, 208, 95, 0.16); +} + +.button-clear-wp-secondary { + color: #32db64; + background-color: transparent; +} + +.button-clear-wp-secondary.activated { + background-color: rgba(158, 158, 158, 0.2); +} + +.button-clear-wp-secondary:hover:not(.disable-hover) { + color: #32db64; +} + +.button-wp-danger { + color: #fff; + background-color: #f53d3d; +} + +.button-wp-danger:hover:not(.disable-hover) { + border-color: #e13838; + background-color: #f53d3d; +} + +.button-wp-danger.activated { + background-color: #e13838; +} + +.button-outline-wp-danger { + border-color: #e93a3a; + color: #e93a3a; + background-color: transparent; +} + +.button-outline-wp-danger:hover:not(.disable-hover) { + border-color: #e93a3a; + background-color: rgba(158, 158, 158, 0.1); +} + +.button-outline-wp-danger.activated { + background-color: rgba(233, 58, 58, 0.16); +} + +.button-clear-wp-danger { + color: #f53d3d; + background-color: transparent; +} + +.button-clear-wp-danger.activated { + background-color: rgba(158, 158, 158, 0.2); +} + +.button-clear-wp-danger:hover:not(.disable-hover) { + color: #f53d3d; +} + +.button-wp-light { + color: #000; + background-color: #f4f4f4; +} + +.button-wp-light:hover:not(.disable-hover) { + border-color: #e0e0e0; + background-color: #f4f4f4; +} + +.button-wp-light.activated { + background-color: #e0e0e0; +} + +.button-outline-wp-light { + border-color: #e8e8e8; + color: #e8e8e8; + background-color: transparent; +} + +.button-outline-wp-light:hover:not(.disable-hover) { + border-color: #e8e8e8; + background-color: rgba(158, 158, 158, 0.1); +} + +.button-outline-wp-light.activated { + background-color: rgba(232, 232, 232, 0.16); +} + +.button-clear-wp-light { + color: #f4f4f4; + background-color: transparent; +} + +.button-clear-wp-light.activated { + background-color: rgba(158, 158, 158, 0.2); +} + +.button-clear-wp-light:hover:not(.disable-hover) { + color: #f4f4f4; +} + +.button-wp-dark { + color: #fff; + background-color: #222; +} + +.button-wp-dark:hover:not(.disable-hover) { + border-color: #343434; + background-color: #222; +} + +.button-wp-dark.activated { + background-color: #343434; +} + +.button-outline-wp-dark { + border-color: #2d2d2d; + color: #2d2d2d; + background-color: transparent; +} + +.button-outline-wp-dark:hover:not(.disable-hover) { + border-color: #2d2d2d; + background-color: rgba(158, 158, 158, 0.1); +} + +.button-outline-wp-dark.activated { + background-color: rgba(45, 45, 45, 0.16); +} + +.button-clear-wp-dark { + color: #222; + background-color: transparent; +} + +.button-clear-wp-dark.activated { + background-color: rgba(158, 158, 158, 0.2); +} + +.button-clear-wp-dark:hover:not(.disable-hover) { + color: #222; +} + +.button-strong-wp { + font-weight: bold; +} + +ion-card { + display: block; + overflow: hidden; +} + +ion-card img { + display: block; + width: 100%; +} + +ion-card-header { + display: block; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +ion-card-content { + display: block; +} + +.card-ios { + margin: 12px 12px 12px 12px; + width: calc(100% - 24px); + border-radius: 2px; + font-size: 1.4rem; + background: #fff; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); +} + +.card-ios ion-list { + margin-bottom: 0; +} + +.card-ios > .item:last-child, +.card-ios > .item:last-child .item-inner, +.card-ios > .item-wrapper:last-child .item { + border-bottom: 0; +} + +.card-ios .item-ios.item-block .item-inner { + border: 0; +} + +.card-content-ios { + padding: 13px 16px 14px 16px; + font-size: 1.4rem; + line-height: 1.4; +} + +.card-header-ios { + padding: 16px; + font-size: 1.6rem; + font-weight: 500; + color: #333; +} + +.card-header-ios + .card-content-ios, +.card-ios .item + .card-content-ios { + padding-top: 0; +} + +.card .note-ios { + font-size: 1.3rem; +} + +.card-title-ios { + display: block; + margin: 2px 0 2px; + padding: 8px 0 8px 0; + font-size: 1.8rem; + line-height: 1.2; + color: #222; +} + +.card-ios h1 { + margin: 0 0 2px; + font-size: 2.4rem; + font-weight: normal; +} + +.card-ios h2 { + margin: 2px 0; + font-size: 1.6rem; + font-weight: normal; +} + +.card-ios h3, +.card-ios h4, +.card-ios h5, +.card-ios h6 { + margin: 2px 0; + font-size: 1.4rem; + font-weight: normal; +} + +.card-ios p { + margin: 0 0 2px; + font-size: 1.4rem; + color: #666; +} + +.card-ios + ion-card { + margin-top: 0; +} + +.card-ios .text-ios-primary { + color: #387ef5; +} + +.card-ios-primary { + color: #fff; + background-color: #387ef5; +} + +.card-ios-primary .card-header-ios, +.card-ios-primary .card-title-ios, +.card-ios-primary .card-content-ios, +.card-ios-primary p { + color: #fff; +} + +.card-ios-primary .text-ios-primary, +.card-ios-primary .card-header-ios-primary, +.card-ios-primary .card-title-ios-primary, +.card-ios-primary .card-content-ios-primary { + color: #387ef5; +} + +.card-ios-primary .text-ios-secondary, +.card-ios-primary .card-header-ios-secondary, +.card-ios-primary .card-title-ios-secondary, +.card-ios-primary .card-content-ios-secondary { + color: #32db64; +} + +.card-ios-primary .text-ios-danger, +.card-ios-primary .card-header-ios-danger, +.card-ios-primary .card-title-ios-danger, +.card-ios-primary .card-content-ios-danger { + color: #f53d3d; +} + +.card-ios-primary .text-ios-light, +.card-ios-primary .card-header-ios-light, +.card-ios-primary .card-title-ios-light, +.card-ios-primary .card-content-ios-light { + color: #f4f4f4; +} + +.card-ios-primary .text-ios-dark, +.card-ios-primary .card-header-ios-dark, +.card-ios-primary .card-title-ios-dark, +.card-ios-primary .card-content-ios-dark { + color: #222; +} + +.card-header-ios-primary, +.card-title-ios-primary, +.card-content-ios-primary { + color: #387ef5; +} + +.card-ios .text-ios-secondary { + color: #32db64; +} + +.card-ios-secondary { + color: #fff; + background-color: #32db64; +} + +.card-ios-secondary .card-header-ios, +.card-ios-secondary .card-title-ios, +.card-ios-secondary .card-content-ios, +.card-ios-secondary p { + color: #fff; +} + +.card-ios-secondary .text-ios-primary, +.card-ios-secondary .card-header-ios-primary, +.card-ios-secondary .card-title-ios-primary, +.card-ios-secondary .card-content-ios-primary { + color: #387ef5; +} + +.card-ios-secondary .text-ios-secondary, +.card-ios-secondary .card-header-ios-secondary, +.card-ios-secondary .card-title-ios-secondary, +.card-ios-secondary .card-content-ios-secondary { + color: #32db64; +} + +.card-ios-secondary .text-ios-danger, +.card-ios-secondary .card-header-ios-danger, +.card-ios-secondary .card-title-ios-danger, +.card-ios-secondary .card-content-ios-danger { + color: #f53d3d; +} + +.card-ios-secondary .text-ios-light, +.card-ios-secondary .card-header-ios-light, +.card-ios-secondary .card-title-ios-light, +.card-ios-secondary .card-content-ios-light { + color: #f4f4f4; +} + +.card-ios-secondary .text-ios-dark, +.card-ios-secondary .card-header-ios-dark, +.card-ios-secondary .card-title-ios-dark, +.card-ios-secondary .card-content-ios-dark { + color: #222; +} + +.card-header-ios-secondary, +.card-title-ios-secondary, +.card-content-ios-secondary { + color: #32db64; +} + +.card-ios .text-ios-danger { + color: #f53d3d; +} + +.card-ios-danger { + color: #fff; + background-color: #f53d3d; +} + +.card-ios-danger .card-header-ios, +.card-ios-danger .card-title-ios, +.card-ios-danger .card-content-ios, +.card-ios-danger p { + color: #fff; +} + +.card-ios-danger .text-ios-primary, +.card-ios-danger .card-header-ios-primary, +.card-ios-danger .card-title-ios-primary, +.card-ios-danger .card-content-ios-primary { + color: #387ef5; +} + +.card-ios-danger .text-ios-secondary, +.card-ios-danger .card-header-ios-secondary, +.card-ios-danger .card-title-ios-secondary, +.card-ios-danger .card-content-ios-secondary { + color: #32db64; +} + +.card-ios-danger .text-ios-danger, +.card-ios-danger .card-header-ios-danger, +.card-ios-danger .card-title-ios-danger, +.card-ios-danger .card-content-ios-danger { + color: #f53d3d; +} + +.card-ios-danger .text-ios-light, +.card-ios-danger .card-header-ios-light, +.card-ios-danger .card-title-ios-light, +.card-ios-danger .card-content-ios-light { + color: #f4f4f4; +} + +.card-ios-danger .text-ios-dark, +.card-ios-danger .card-header-ios-dark, +.card-ios-danger .card-title-ios-dark, +.card-ios-danger .card-content-ios-dark { + color: #222; +} + +.card-header-ios-danger, +.card-title-ios-danger, +.card-content-ios-danger { + color: #f53d3d; +} + +.card-ios .text-ios-light { + color: #f4f4f4; +} + +.card-ios-light { + color: #000; + background-color: #f4f4f4; +} + +.card-ios-light .card-header-ios, +.card-ios-light .card-title-ios, +.card-ios-light .card-content-ios, +.card-ios-light p { + color: #000; +} + +.card-ios-light .text-ios-primary, +.card-ios-light .card-header-ios-primary, +.card-ios-light .card-title-ios-primary, +.card-ios-light .card-content-ios-primary { + color: #387ef5; +} + +.card-ios-light .text-ios-secondary, +.card-ios-light .card-header-ios-secondary, +.card-ios-light .card-title-ios-secondary, +.card-ios-light .card-content-ios-secondary { + color: #32db64; +} + +.card-ios-light .text-ios-danger, +.card-ios-light .card-header-ios-danger, +.card-ios-light .card-title-ios-danger, +.card-ios-light .card-content-ios-danger { + color: #f53d3d; +} + +.card-ios-light .text-ios-light, +.card-ios-light .card-header-ios-light, +.card-ios-light .card-title-ios-light, +.card-ios-light .card-content-ios-light { + color: #f4f4f4; +} + +.card-ios-light .text-ios-dark, +.card-ios-light .card-header-ios-dark, +.card-ios-light .card-title-ios-dark, +.card-ios-light .card-content-ios-dark { + color: #222; +} + +.card-header-ios-light, +.card-title-ios-light, +.card-content-ios-light { + color: #f4f4f4; +} + +.card-ios .text-ios-dark { + color: #222; +} + +.card-ios-dark { + color: #fff; + background-color: #222; +} + +.card-ios-dark .card-header-ios, +.card-ios-dark .card-title-ios, +.card-ios-dark .card-content-ios, +.card-ios-dark p { + color: #fff; +} + +.card-ios-dark .text-ios-primary, +.card-ios-dark .card-header-ios-primary, +.card-ios-dark .card-title-ios-primary, +.card-ios-dark .card-content-ios-primary { + color: #387ef5; +} + +.card-ios-dark .text-ios-secondary, +.card-ios-dark .card-header-ios-secondary, +.card-ios-dark .card-title-ios-secondary, +.card-ios-dark .card-content-ios-secondary { + color: #32db64; +} + +.card-ios-dark .text-ios-danger, +.card-ios-dark .card-header-ios-danger, +.card-ios-dark .card-title-ios-danger, +.card-ios-dark .card-content-ios-danger { + color: #f53d3d; +} + +.card-ios-dark .text-ios-light, +.card-ios-dark .card-header-ios-light, +.card-ios-dark .card-title-ios-light, +.card-ios-dark .card-content-ios-light { + color: #f4f4f4; +} + +.card-ios-dark .text-ios-dark, +.card-ios-dark .card-header-ios-dark, +.card-ios-dark .card-title-ios-dark, +.card-ios-dark .card-content-ios-dark { + color: #222; +} + +.card-header-ios-dark, +.card-title-ios-dark, +.card-content-ios-dark { + color: #222; +} + +.card-md { + margin: 10px 10px 10px 10px; + width: calc(100% - 20px); + border-radius: 2px; + font-size: 1.4rem; + background: #fff; + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); +} + +.card-md ion-list { + margin-bottom: 0; +} + +.card-md > .item:last-child, +.card-md > .item:last-child .item-inner, +.card-md > .item-wrapper:last-child .item { + border-bottom: 0; +} + +.card-md .item-md.item-block .item-inner { + border: 0; +} + +.card-content-md { + padding: 13px 16px 13px 16px; + font-size: 1.4rem; + line-height: 1.5; +} + +.card-header-md { + padding: 16px; + font-size: 1.6rem; + color: #222; +} + +.card-header-md + .card-content-md, +.card-md .item + .card-content-md { + padding-top: 0; +} + +.card .note-md { + font-size: 1.3rem; +} + +.card-title-md { + display: block; + margin: 2px 0 2px; + padding: 8px 0 8px 0; + font-size: 2.4rem; + line-height: 1.2; + color: #222; +} + +.card-md h1 { + margin: 0 0 2px; + font-size: 2.4rem; + font-weight: normal; + color: #222; +} + +.card-md h2 { + margin: 2px 0; + font-size: 1.6rem; + font-weight: normal; + color: #222; +} + +.card-md h3, +.card-md h4, +.card-md h5, +.card-md h6 { + margin: 2px 0; + font-size: 1.4rem; + font-weight: normal; + color: #222; +} + +.card-md p { + margin: 0 0 2px; + font-size: 1.4rem; + font-weight: normal; + line-height: 1.5; + color: #222; +} + +.card-md + ion-card { + margin-top: 0; +} + +.card-md .text-md-primary { + color: #387ef5; +} + +.card-md-primary { + color: #fff; + background-color: #387ef5; +} + +.card-md-primary .card-header-md, +.card-md-primary .card-title-md, +.card-md-primary .card-content-md, +.card-md-primary h1, +.card-md-primary h2, +.card-md-primary h3, +.card-md-primary h4, +.card-md-primary h5, +.card-md-primary h6, +.card-md-primary p { + color: #fff; +} + +.card-md-primary .text-md-primary, +.card-md-primary .card-header-md-primary, +.card-md-primary .card-title-md-primary, +.card-md-primary .card-content-md-primary { + color: #387ef5; +} + +.card-md-primary .text-md-secondary, +.card-md-primary .card-header-md-secondary, +.card-md-primary .card-title-md-secondary, +.card-md-primary .card-content-md-secondary { + color: #32db64; +} + +.card-md-primary .text-md-danger, +.card-md-primary .card-header-md-danger, +.card-md-primary .card-title-md-danger, +.card-md-primary .card-content-md-danger { + color: #f53d3d; +} + +.card-md-primary .text-md-light, +.card-md-primary .card-header-md-light, +.card-md-primary .card-title-md-light, +.card-md-primary .card-content-md-light { + color: #f4f4f4; +} + +.card-md-primary .text-md-dark, +.card-md-primary .card-header-md-dark, +.card-md-primary .card-title-md-dark, +.card-md-primary .card-content-md-dark { + color: #222; +} + +.card-header-md-primary, +.card-title-md-primary, +.card-content-md-primary { + color: #387ef5; +} + +.card-md .text-md-secondary { + color: #32db64; +} + +.card-md-secondary { + color: #fff; + background-color: #32db64; +} + +.card-md-secondary .card-header-md, +.card-md-secondary .card-title-md, +.card-md-secondary .card-content-md, +.card-md-secondary h1, +.card-md-secondary h2, +.card-md-secondary h3, +.card-md-secondary h4, +.card-md-secondary h5, +.card-md-secondary h6, +.card-md-secondary p { + color: #fff; +} + +.card-md-secondary .text-md-primary, +.card-md-secondary .card-header-md-primary, +.card-md-secondary .card-title-md-primary, +.card-md-secondary .card-content-md-primary { + color: #387ef5; +} + +.card-md-secondary .text-md-secondary, +.card-md-secondary .card-header-md-secondary, +.card-md-secondary .card-title-md-secondary, +.card-md-secondary .card-content-md-secondary { + color: #32db64; +} + +.card-md-secondary .text-md-danger, +.card-md-secondary .card-header-md-danger, +.card-md-secondary .card-title-md-danger, +.card-md-secondary .card-content-md-danger { + color: #f53d3d; +} + +.card-md-secondary .text-md-light, +.card-md-secondary .card-header-md-light, +.card-md-secondary .card-title-md-light, +.card-md-secondary .card-content-md-light { + color: #f4f4f4; +} + +.card-md-secondary .text-md-dark, +.card-md-secondary .card-header-md-dark, +.card-md-secondary .card-title-md-dark, +.card-md-secondary .card-content-md-dark { + color: #222; +} + +.card-header-md-secondary, +.card-title-md-secondary, +.card-content-md-secondary { + color: #32db64; +} + +.card-md .text-md-danger { + color: #f53d3d; +} + +.card-md-danger { + color: #fff; + background-color: #f53d3d; +} + +.card-md-danger .card-header-md, +.card-md-danger .card-title-md, +.card-md-danger .card-content-md, +.card-md-danger h1, +.card-md-danger h2, +.card-md-danger h3, +.card-md-danger h4, +.card-md-danger h5, +.card-md-danger h6, +.card-md-danger p { + color: #fff; +} + +.card-md-danger .text-md-primary, +.card-md-danger .card-header-md-primary, +.card-md-danger .card-title-md-primary, +.card-md-danger .card-content-md-primary { + color: #387ef5; +} + +.card-md-danger .text-md-secondary, +.card-md-danger .card-header-md-secondary, +.card-md-danger .card-title-md-secondary, +.card-md-danger .card-content-md-secondary { + color: #32db64; +} + +.card-md-danger .text-md-danger, +.card-md-danger .card-header-md-danger, +.card-md-danger .card-title-md-danger, +.card-md-danger .card-content-md-danger { + color: #f53d3d; +} + +.card-md-danger .text-md-light, +.card-md-danger .card-header-md-light, +.card-md-danger .card-title-md-light, +.card-md-danger .card-content-md-light { + color: #f4f4f4; +} + +.card-md-danger .text-md-dark, +.card-md-danger .card-header-md-dark, +.card-md-danger .card-title-md-dark, +.card-md-danger .card-content-md-dark { + color: #222; +} + +.card-header-md-danger, +.card-title-md-danger, +.card-content-md-danger { + color: #f53d3d; +} + +.card-md .text-md-light { + color: #f4f4f4; +} + +.card-md-light { + color: #000; + background-color: #f4f4f4; +} + +.card-md-light .card-header-md, +.card-md-light .card-title-md, +.card-md-light .card-content-md, +.card-md-light h1, +.card-md-light h2, +.card-md-light h3, +.card-md-light h4, +.card-md-light h5, +.card-md-light h6, +.card-md-light p { + color: #000; +} + +.card-md-light .text-md-primary, +.card-md-light .card-header-md-primary, +.card-md-light .card-title-md-primary, +.card-md-light .card-content-md-primary { + color: #387ef5; +} + +.card-md-light .text-md-secondary, +.card-md-light .card-header-md-secondary, +.card-md-light .card-title-md-secondary, +.card-md-light .card-content-md-secondary { + color: #32db64; +} + +.card-md-light .text-md-danger, +.card-md-light .card-header-md-danger, +.card-md-light .card-title-md-danger, +.card-md-light .card-content-md-danger { + color: #f53d3d; +} + +.card-md-light .text-md-light, +.card-md-light .card-header-md-light, +.card-md-light .card-title-md-light, +.card-md-light .card-content-md-light { + color: #f4f4f4; +} + +.card-md-light .text-md-dark, +.card-md-light .card-header-md-dark, +.card-md-light .card-title-md-dark, +.card-md-light .card-content-md-dark { + color: #222; +} + +.card-header-md-light, +.card-title-md-light, +.card-content-md-light { + color: #f4f4f4; +} + +.card-md .text-md-dark { + color: #222; +} + +.card-md-dark { + color: #fff; + background-color: #222; +} + +.card-md-dark .card-header-md, +.card-md-dark .card-title-md, +.card-md-dark .card-content-md, +.card-md-dark h1, +.card-md-dark h2, +.card-md-dark h3, +.card-md-dark h4, +.card-md-dark h5, +.card-md-dark h6, +.card-md-dark p { + color: #fff; +} + +.card-md-dark .text-md-primary, +.card-md-dark .card-header-md-primary, +.card-md-dark .card-title-md-primary, +.card-md-dark .card-content-md-primary { + color: #387ef5; +} + +.card-md-dark .text-md-secondary, +.card-md-dark .card-header-md-secondary, +.card-md-dark .card-title-md-secondary, +.card-md-dark .card-content-md-secondary { + color: #32db64; +} + +.card-md-dark .text-md-danger, +.card-md-dark .card-header-md-danger, +.card-md-dark .card-title-md-danger, +.card-md-dark .card-content-md-danger { + color: #f53d3d; +} + +.card-md-dark .text-md-light, +.card-md-dark .card-header-md-light, +.card-md-dark .card-title-md-light, +.card-md-dark .card-content-md-light { + color: #f4f4f4; +} + +.card-md-dark .text-md-dark, +.card-md-dark .card-header-md-dark, +.card-md-dark .card-title-md-dark, +.card-md-dark .card-content-md-dark { + color: #222; +} + +.card-header-md-dark, +.card-title-md-dark, +.card-content-md-dark { + color: #222; +} + +.card-wp { + margin: 8px 8px 8px 8px; + width: calc(100% - 16px); + border-radius: 1px; + font-size: 1.4rem; + background: #fff; + box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.2); +} + +.card-wp ion-list { + margin-bottom: 0; +} + +.card-wp > .item:last-child, +.card-wp > .item:last-child .item-inner, +.card-wp > .item-wrapper:last-child .item { + border-bottom: 0; +} + +.card-wp .item-wp.item-block .item-inner { + border: 0; +} + +.card-content-wp { + padding: 13px 16px 13px 16px; + font-size: 1.4rem; + line-height: 1.5; +} + +.card-header-wp { + padding: 16px; + font-size: 1.6rem; + color: #222; +} + +.card-header-wp + .card-content-wp, +.card-wp .item + .card-content-wp { + padding-top: 0; +} + +.card .note-wp { + font-size: 1.3rem; +} + +.card-title-wp { + display: block; + margin: 2px 0; + padding: 8px 0 8px 0; + font-size: 2.4rem; + line-height: 1.2; + color: #222; +} + +.card-wp h1 { + margin: 0 0 2px; + font-size: 2.4rem; + font-weight: normal; + color: #222; +} + +.card-wp h2 { + margin: 2px 0; + font-size: 1.6rem; + font-weight: normal; + color: #222; +} + +.card-wp h3, +.card-wp h4, +.card-wp h5, +.card-wp h6 { + margin: 2px 0; + font-size: 1.4rem; + font-weight: normal; + color: #222; +} + +.card-wp p { + margin: 0 0 2px; + font-size: 1.4rem; + font-weight: normal; + line-height: 1.5; + color: #222; +} + +.card-wp + ion-card { + margin-top: 0; +} + +.card-wp .text-wp-primary { + color: #387ef5; +} + +.card-wp-primary { + color: #fff; + background-color: #387ef5; +} + +.card-wp-primary .card-header-wp, +.card-wp-primary .card-title-wp, +.card-wp-primary .card-content-wp, +.card-wp-primary h1, +.card-wp-primary h2, +.card-wp-primary h3, +.card-wp-primary h4, +.card-wp-primary h5, +.card-wp-primary h6, +.card-wp-primary p { + color: #fff; +} + +.card-wp-primary .text-wp-primary, +.card-wp-primary .card-header-wp-primary, +.card-wp-primary .card-title-wp-primary, +.card-wp-primary .card-content-wp-primary { + color: #387ef5; +} + +.card-wp-primary .text-wp-secondary, +.card-wp-primary .card-header-wp-secondary, +.card-wp-primary .card-title-wp-secondary, +.card-wp-primary .card-content-wp-secondary { + color: #32db64; +} + +.card-wp-primary .text-wp-danger, +.card-wp-primary .card-header-wp-danger, +.card-wp-primary .card-title-wp-danger, +.card-wp-primary .card-content-wp-danger { + color: #f53d3d; +} + +.card-wp-primary .text-wp-light, +.card-wp-primary .card-header-wp-light, +.card-wp-primary .card-title-wp-light, +.card-wp-primary .card-content-wp-light { + color: #f4f4f4; +} + +.card-wp-primary .text-wp-dark, +.card-wp-primary .card-header-wp-dark, +.card-wp-primary .card-title-wp-dark, +.card-wp-primary .card-content-wp-dark { + color: #222; +} + +.card-header-wp-primary, +.card-title-wp-primary, +.card-content-wp-primary { + color: #387ef5; +} + +.card-wp .text-wp-secondary { + color: #32db64; +} + +.card-wp-secondary { + color: #fff; + background-color: #32db64; +} + +.card-wp-secondary .card-header-wp, +.card-wp-secondary .card-title-wp, +.card-wp-secondary .card-content-wp, +.card-wp-secondary h1, +.card-wp-secondary h2, +.card-wp-secondary h3, +.card-wp-secondary h4, +.card-wp-secondary h5, +.card-wp-secondary h6, +.card-wp-secondary p { + color: #fff; +} + +.card-wp-secondary .text-wp-primary, +.card-wp-secondary .card-header-wp-primary, +.card-wp-secondary .card-title-wp-primary, +.card-wp-secondary .card-content-wp-primary { + color: #387ef5; +} + +.card-wp-secondary .text-wp-secondary, +.card-wp-secondary .card-header-wp-secondary, +.card-wp-secondary .card-title-wp-secondary, +.card-wp-secondary .card-content-wp-secondary { + color: #32db64; +} + +.card-wp-secondary .text-wp-danger, +.card-wp-secondary .card-header-wp-danger, +.card-wp-secondary .card-title-wp-danger, +.card-wp-secondary .card-content-wp-danger { + color: #f53d3d; +} + +.card-wp-secondary .text-wp-light, +.card-wp-secondary .card-header-wp-light, +.card-wp-secondary .card-title-wp-light, +.card-wp-secondary .card-content-wp-light { + color: #f4f4f4; +} + +.card-wp-secondary .text-wp-dark, +.card-wp-secondary .card-header-wp-dark, +.card-wp-secondary .card-title-wp-dark, +.card-wp-secondary .card-content-wp-dark { + color: #222; +} + +.card-header-wp-secondary, +.card-title-wp-secondary, +.card-content-wp-secondary { + color: #32db64; +} + +.card-wp .text-wp-danger { + color: #f53d3d; +} + +.card-wp-danger { + color: #fff; + background-color: #f53d3d; +} + +.card-wp-danger .card-header-wp, +.card-wp-danger .card-title-wp, +.card-wp-danger .card-content-wp, +.card-wp-danger h1, +.card-wp-danger h2, +.card-wp-danger h3, +.card-wp-danger h4, +.card-wp-danger h5, +.card-wp-danger h6, +.card-wp-danger p { + color: #fff; +} + +.card-wp-danger .text-wp-primary, +.card-wp-danger .card-header-wp-primary, +.card-wp-danger .card-title-wp-primary, +.card-wp-danger .card-content-wp-primary { + color: #387ef5; +} + +.card-wp-danger .text-wp-secondary, +.card-wp-danger .card-header-wp-secondary, +.card-wp-danger .card-title-wp-secondary, +.card-wp-danger .card-content-wp-secondary { + color: #32db64; +} + +.card-wp-danger .text-wp-danger, +.card-wp-danger .card-header-wp-danger, +.card-wp-danger .card-title-wp-danger, +.card-wp-danger .card-content-wp-danger { + color: #f53d3d; +} + +.card-wp-danger .text-wp-light, +.card-wp-danger .card-header-wp-light, +.card-wp-danger .card-title-wp-light, +.card-wp-danger .card-content-wp-light { + color: #f4f4f4; +} + +.card-wp-danger .text-wp-dark, +.card-wp-danger .card-header-wp-dark, +.card-wp-danger .card-title-wp-dark, +.card-wp-danger .card-content-wp-dark { + color: #222; +} + +.card-header-wp-danger, +.card-title-wp-danger, +.card-content-wp-danger { + color: #f53d3d; +} + +.card-wp .text-wp-light { + color: #f4f4f4; +} + +.card-wp-light { + color: #000; + background-color: #f4f4f4; +} + +.card-wp-light .card-header-wp, +.card-wp-light .card-title-wp, +.card-wp-light .card-content-wp, +.card-wp-light h1, +.card-wp-light h2, +.card-wp-light h3, +.card-wp-light h4, +.card-wp-light h5, +.card-wp-light h6, +.card-wp-light p { + color: #000; +} + +.card-wp-light .text-wp-primary, +.card-wp-light .card-header-wp-primary, +.card-wp-light .card-title-wp-primary, +.card-wp-light .card-content-wp-primary { + color: #387ef5; +} + +.card-wp-light .text-wp-secondary, +.card-wp-light .card-header-wp-secondary, +.card-wp-light .card-title-wp-secondary, +.card-wp-light .card-content-wp-secondary { + color: #32db64; +} + +.card-wp-light .text-wp-danger, +.card-wp-light .card-header-wp-danger, +.card-wp-light .card-title-wp-danger, +.card-wp-light .card-content-wp-danger { + color: #f53d3d; +} + +.card-wp-light .text-wp-light, +.card-wp-light .card-header-wp-light, +.card-wp-light .card-title-wp-light, +.card-wp-light .card-content-wp-light { + color: #f4f4f4; +} + +.card-wp-light .text-wp-dark, +.card-wp-light .card-header-wp-dark, +.card-wp-light .card-title-wp-dark, +.card-wp-light .card-content-wp-dark { + color: #222; +} + +.card-header-wp-light, +.card-title-wp-light, +.card-content-wp-light { + color: #f4f4f4; +} + +.card-wp .text-wp-dark { + color: #222; +} + +.card-wp-dark { + color: #fff; + background-color: #222; +} + +.card-wp-dark .card-header-wp, +.card-wp-dark .card-title-wp, +.card-wp-dark .card-content-wp, +.card-wp-dark h1, +.card-wp-dark h2, +.card-wp-dark h3, +.card-wp-dark h4, +.card-wp-dark h5, +.card-wp-dark h6, +.card-wp-dark p { + color: #fff; +} + +.card-wp-dark .text-wp-primary, +.card-wp-dark .card-header-wp-primary, +.card-wp-dark .card-title-wp-primary, +.card-wp-dark .card-content-wp-primary { + color: #387ef5; +} + +.card-wp-dark .text-wp-secondary, +.card-wp-dark .card-header-wp-secondary, +.card-wp-dark .card-title-wp-secondary, +.card-wp-dark .card-content-wp-secondary { + color: #32db64; +} + +.card-wp-dark .text-wp-danger, +.card-wp-dark .card-header-wp-danger, +.card-wp-dark .card-title-wp-danger, +.card-wp-dark .card-content-wp-danger { + color: #f53d3d; +} + +.card-wp-dark .text-wp-light, +.card-wp-dark .card-header-wp-light, +.card-wp-dark .card-title-wp-light, +.card-wp-dark .card-content-wp-light { + color: #f4f4f4; +} + +.card-wp-dark .text-wp-dark, +.card-wp-dark .card-header-wp-dark, +.card-wp-dark .card-title-wp-dark, +.card-wp-dark .card-content-wp-dark { + color: #222; +} + +.card-header-wp-dark, +.card-title-wp-dark, +.card-content-wp-dark { + color: #222; +} + +.checkbox-ios { + position: relative; + display: inline-block; +} + +.checkbox-ios .checkbox-icon { + position: relative; + width: 21px; + height: 21px; + border-width: 1px; + border-style: solid; + border-radius: 50%; + border-color: #c8c7cc; + background-color: #fff; +} + +.checkbox-ios .checkbox-checked { + border-color: #387ef5; + background-color: #387ef5; +} + +.checkbox-ios .checkbox-checked .checkbox-inner { + position: absolute; + top: 4px; + left: 7px; + width: 4px; + height: 9px; + border-width: 1px; + border-top-width: 0; + border-left-width: 0; + border-style: solid; + border-color: #fff; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); +} + +.checkbox-ios.checkbox-disabled, +.item-ios.item-checkbox-disabled ion-label { + opacity: 0.3; + pointer-events: none; +} + +.item.item-ios .checkbox-ios { + position: static; + display: block; + margin: 8px 16px 8px 2px; +} + +.item.item-ios .checkbox-ios[item-right] { + margin: 10px 8px 9px 0; +} + +.checkbox-ios-primary .checkbox-checked { + border-color: #387ef5; + background-color: #387ef5; +} + +.checkbox-ios-primary .checkbox-checked .checkbox-inner { + border-color: #fff; +} + +.checkbox-ios-secondary .checkbox-checked { + border-color: #32db64; + background-color: #32db64; +} + +.checkbox-ios-secondary .checkbox-checked .checkbox-inner { + border-color: #fff; +} + +.checkbox-ios-danger .checkbox-checked { + border-color: #f53d3d; + background-color: #f53d3d; +} + +.checkbox-ios-danger .checkbox-checked .checkbox-inner { + border-color: #fff; +} + +.checkbox-ios-light .checkbox-checked { + border-color: #f4f4f4; + background-color: #f4f4f4; +} + +.checkbox-ios-light .checkbox-checked .checkbox-inner { + border-color: #000; +} + +.checkbox-ios-dark .checkbox-checked { + border-color: #222; + background-color: #222; +} + +.checkbox-ios-dark .checkbox-checked .checkbox-inner { + border-color: #fff; +} + +.checkbox-md { + position: relative; + display: inline-block; +} + +.checkbox-md .checkbox-icon { + position: relative; + width: 16px; + height: 16px; + border-width: 2px; + border-style: solid; + border-radius: 2px; + border-color: #787878; + background-color: #fff; + transition-duration: 280ms; + transition-property: background; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); +} + +.checkbox-md .checkbox-checked { + border-color: #387ef5; + background-color: #387ef5; +} + +.checkbox-md .checkbox-checked .checkbox-inner { + position: absolute; + top: 0; + left: 4px; + width: 5px; + height: 10px; + border-width: 2px; + border-top-width: 0; + border-left-width: 0; + border-style: solid; + border-color: #fff; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); +} + +.checkbox-md.checkbox-disabled, +.item-md.item-checkbox-disabled ion-label { + opacity: 0.3; + pointer-events: none; +} + +.item.item-md .checkbox-md { + position: static; + display: block; + margin: 9px 36px 9px 4px; +} + +.item.item-md .checkbox-md[item-right] { + margin: 11px 10px 10px 0; +} + +.checkbox-md + .item-inner ion-label { + margin-left: 0; +} + +.checkbox-md-primary .checkbox-checked { + border-color: #387ef5; + background-color: #387ef5; +} + +.checkbox-md-primary .checkbox-checked .checkbox-inner { + border-color: #fff; +} + +.checkbox-md-secondary .checkbox-checked { + border-color: #32db64; + background-color: #32db64; +} + +.checkbox-md-secondary .checkbox-checked .checkbox-inner { + border-color: #fff; +} + +.checkbox-md-danger .checkbox-checked { + border-color: #f53d3d; + background-color: #f53d3d; +} + +.checkbox-md-danger .checkbox-checked .checkbox-inner { + border-color: #fff; +} + +.checkbox-md-light .checkbox-checked { + border-color: #f4f4f4; + background-color: #f4f4f4; +} + +.checkbox-md-light .checkbox-checked .checkbox-inner { + border-color: #000; +} + +.checkbox-md-dark .checkbox-checked { + border-color: #222; + background-color: #222; +} + +.checkbox-md-dark .checkbox-checked .checkbox-inner { + border-color: #fff; +} + +.checkbox-wp { + position: relative; + display: inline-block; +} + +.checkbox-wp .checkbox-icon { + position: relative; + width: 16px; + height: 16px; + border-width: 2px; + border-style: solid; + border-radius: 0; + border-color: #333; + background-color: #fff; +} + +.checkbox-wp .checkbox-checked { + border-color: #387ef5; + background-color: #387ef5; +} + +.checkbox-wp .checkbox-checked .checkbox-inner { + position: absolute; + top: -2px; + left: 3px; + width: 6px; + height: 12px; + border-width: 1px; + border-top-width: 0; + border-left-width: 0; + border-style: solid; + border-color: #fff; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); +} + +.checkbox-wp.checkbox-disabled, +.item-wp.item-checkbox-disabled ion-label { + opacity: 0.3; + pointer-events: none; +} + +.item.item-wp .checkbox-wp { + position: static; + display: block; + margin: 9px 16px 9px 4px; +} + +.item.item-wp .checkbox-wp[item-right] { + margin: 11px 10px 10px 0; +} + +.checkbox-wp + .item-inner ion-label { + margin-left: 0; +} + +.checkbox-wp-primary .checkbox-checked { + border-color: #387ef5; + background-color: #387ef5; +} + +.checkbox-wp-primary .checkbox-checked .checkbox-inner { + border-color: #fff; +} + +.checkbox-wp-secondary .checkbox-checked { + border-color: #32db64; + background-color: #32db64; +} + +.checkbox-wp-secondary .checkbox-checked .checkbox-inner { + border-color: #fff; +} + +.checkbox-wp-danger .checkbox-checked { + border-color: #f53d3d; + background-color: #f53d3d; +} + +.checkbox-wp-danger .checkbox-checked .checkbox-inner { + border-color: #fff; +} + +.checkbox-wp-light .checkbox-checked { + border-color: #f4f4f4; + background-color: #f4f4f4; +} + +.checkbox-wp-light .checkbox-checked .checkbox-inner { + border-color: #000; +} + +.checkbox-wp-dark .checkbox-checked { + border-color: #222; + background-color: #222; +} + +.checkbox-wp-dark .checkbox-checked .checkbox-inner { + border-color: #fff; +} + +ion-chip { + display: -webkit-inline-flex; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-align-self: center; + -ms-flex-item-align: center; + align-self: center; + font-weight: normal; + vertical-align: middle; + box-sizing: border-box; +} + +ion-chip .button { + margin: 0; + width: 32px; + height: 32px; + border-radius: 50%; +} + +ion-chip ion-icon { + width: 32px; + height: 32px; + border-radius: 50%; + font-size: 18px; + line-height: 32px; +} + +ion-chip ion-avatar { + width: 32px; + min-width: 32px; + height: 32px; + min-height: 32px; + border-radius: 50%; +} + +ion-chip ion-avatar img { + display: block; + width: 100%; + max-width: 100%; + height: 100%; + max-height: 100%; + border-radius: 50%; +} + +.chip-ios { + margin: 2px 0; + height: 32px; + border-radius: 16px; + font-size: 13px; + line-height: 32px; + color: rgba(0, 0, 0, 0.87); + background: rgba(0, 0, 0, 0.12); +} + +.chip-ios > ion-label { + margin: 0 10px; +} + +.chip-ios > ion-icon { + color: #fff; + background-color: #387ef5; +} + +.chip-ios-primary, +.chip-ios .icon-ios-primary { + color: #fff; + background-color: #387ef5; +} + +.chip-ios-secondary, +.chip-ios .icon-ios-secondary { + color: #fff; + background-color: #32db64; +} + +.chip-ios-danger, +.chip-ios .icon-ios-danger { + color: #fff; + background-color: #f53d3d; +} + +.chip-ios-light, +.chip-ios .icon-ios-light { + color: #000; + background-color: #f4f4f4; +} + +.chip-ios-dark, +.chip-ios .icon-ios-dark { + color: #fff; + background-color: #222; +} + +.chip-md { + margin: 2px 0; + height: 32px; + border-radius: 16px; + font-size: 13px; + line-height: 32px; + color: rgba(0, 0, 0, 0.87); + background: rgba(0, 0, 0, 0.12); +} + +.chip-md > ion-label { + margin: 0 10px; +} + +.chip-md > ion-icon { + color: #fff; + background-color: #387ef5; +} + +.chip-md-primary, +.chip-md .icon-md-primary { + color: #fff; + background-color: #387ef5; +} + +.chip-md-secondary, +.chip-md .icon-md-secondary { + color: #fff; + background-color: #32db64; +} + +.chip-md-danger, +.chip-md .icon-md-danger { + color: #fff; + background-color: #f53d3d; +} + +.chip-md-light, +.chip-md .icon-md-light { + color: #000; + background-color: #f4f4f4; +} + +.chip-md-dark, +.chip-md .icon-md-dark { + color: #fff; + background-color: #222; +} + +.chip-wp { + margin: 2px 0; + height: 32px; + border-radius: 16px; + font-size: 13px; + line-height: 32px; + color: rgba(0, 0, 0, 0.87); + background: rgba(0, 0, 0, 0.12); +} + +.chip-wp > ion-label { + margin: 0 10px; +} + +.chip-wp > ion-icon { + color: #fff; + background-color: #387ef5; +} + +.chip-wp .button { + border: 0; +} + +.chip-wp-primary, +.chip-wp .icon-wp-primary { + color: #fff; + background-color: #387ef5; +} + +.chip-wp-secondary, +.chip-wp .icon-wp-secondary { + color: #fff; + background-color: #32db64; +} + +.chip-wp-danger, +.chip-wp .icon-wp-danger { + color: #fff; + background-color: #f53d3d; +} + +.chip-wp-light, +.chip-wp .icon-wp-light { + color: #000; + background-color: #f4f4f4; +} + +.chip-wp-dark, +.chip-wp .icon-wp-dark { + color: #fff; + background-color: #222; +} + +ion-content { + position: relative; + top: 0; + left: 0; + display: block; + width: 100%; + height: 100%; + contain: layout size style; +} + +.ion-page > ion-content { + position: absolute; +} + +a { + color: #387ef5; +} + +.scroll-content { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1; + display: block; + overflow-x: hidden; + overflow-y: scroll; + -webkit-overflow-scrolling: touch; + will-change: scroll-position; + contain: size style layout; +} + +ion-content.js-scroll > .scroll-content { + position: relative; + min-height: 100%; + overflow-x: initial; + overflow-y: initial; + -webkit-overflow-scrolling: auto; + will-change: initial; +} + +.disable-scroll .ion-page { + pointer-events: none; +} + +.fixed-content { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + display: block; +} + +[ion-fixed] { + position: absolute; + z-index: 999; + -webkit-transform: translateZ(0); + transform: translateZ(0); +} + +ion-app [no-padding], +ion-app [no-padding] .scroll-content { + padding: 0; +} + +ion-app [no-margin], +ion-app [no-margin] .scroll-content { + margin: 0; +} + +.content-ios { + color: #000; + background-color: #fff; +} + +.content-ios.outer-content { + background: #efeff4; +} + +.content-ios hr { + height: 0.55px; + background-color: rgba(0, 0, 0, 0.12); +} + +.ios .ion-page.show-page ~ .nav-decor { + position: absolute; + top: 0; + left: 0; + z-index: 0; + display: block; + width: 100%; + height: 100%; + background: #000; + pointer-events: none; +} + +ion-app.ios [padding], +ion-app.ios [padding] .scroll-content { + padding: 16px; +} + +ion-app.ios [padding-top], +ion-app.ios [padding-top] .scroll-content { + padding-top: 16px; +} + +ion-app.ios [padding-left], +ion-app.ios [padding-left] .scroll-content { + padding-left: 16px; +} + +ion-app.ios [padding-right], +ion-app.ios [padding-right] .scroll-content { + padding-right: 16px; +} + +ion-app.ios [padding-bottom], +ion-app.ios [padding-bottom] .scroll-content { + padding-bottom: 16px; +} + +ion-app.ios [padding-vertical], +ion-app.ios [padding-vertical] .scroll-content { + padding-top: 16px; + padding-bottom: 16px; +} + +ion-app.ios [padding-horizontal], +ion-app.ios [padding-horizontal] .scroll-content { + padding-right: 16px; + padding-left: 16px; +} + +ion-app.ios [margin], +ion-app.ios [margin] .scroll-content { + margin: 16px; +} + +ion-app.ios [margin-top], +ion-app.ios [margin-top] .scroll-content { + margin-top: 16px; +} + +ion-app.ios [margin-left], +ion-app.ios [margin-left] .scroll-content { + margin-left: 16px; +} + +ion-app.ios [margin-right], +ion-app.ios [margin-right] .scroll-content { + margin-right: 16px; +} + +ion-app.ios [margin-bottom], +ion-app.ios [margin-bottom] .scroll-content { + margin-bottom: 16px; +} + +ion-app.ios [margin-vertical], +ion-app.ios [margin-vertical] .scroll-content { + margin-top: 16px; + margin-bottom: 16px; +} + +ion-app.ios [margin-horizontal], +ion-app.ios [margin-horizontal] .scroll-content { + margin-right: 16px; + margin-left: 16px; +} + +.content-ios:not([no-bounce]) > .scroll-content::before, +.content-ios:not([no-bounce]) > .scroll-content::after { + position: absolute; + width: 1px; + height: 1px; + content: ""; +} + +.content-ios:not([no-bounce]) > .scroll-content::before { + bottom: -1px; +} + +.content-ios:not([no-bounce]) > .scroll-content::after { + top: -1px; +} + +.content-md { + color: #000; + background-color: #fff; +} + +.content-md hr { + background-color: rgba(0, 0, 0, 0.08); +} + +ion-app.md [padding], +ion-app.md [padding] .scroll-content { + padding: 16px; +} + +ion-app.md [padding-top], +ion-app.md [padding-top] .scroll-content { + padding-top: 16px; +} + +ion-app.md [padding-left], +ion-app.md [padding-left] .scroll-content { + padding-left: 16px; +} + +ion-app.md [padding-right], +ion-app.md [padding-right] .scroll-content { + padding-right: 16px; +} + +ion-app.md [padding-bottom], +ion-app.md [padding-bottom] .scroll-content { + padding-bottom: 16px; +} + +ion-app.md [padding-vertical], +ion-app.md [padding-vertical] .scroll-content { + padding-top: 16px; + padding-bottom: 16px; +} + +ion-app.md [padding-horizontal], +ion-app.md [padding-horizontal] .scroll-content { + padding-right: 16px; + padding-left: 16px; +} + +ion-app.md [margin], +ion-app.md [margin] .scroll-content { + margin: 16px; +} + +ion-app.md [margin-top], +ion-app.md [margin-top] .scroll-content { + margin-top: 16px; +} + +ion-app.md [margin-left], +ion-app.md [margin-left] .scroll-content { + margin-left: 16px; +} + +ion-app.md [margin-right], +ion-app.md [margin-right] .scroll-content { + margin-right: 16px; +} + +ion-app.md [margin-bottom], +ion-app.md [margin-bottom] .scroll-content { + margin-bottom: 16px; +} + +ion-app.md [margin-vertical], +ion-app.md [margin-vertical] .scroll-content { + margin-top: 16px; + margin-bottom: 16px; +} + +ion-app.md [margin-horizontal], +ion-app.md [margin-horizontal] .scroll-content { + margin-right: 16px; + margin-left: 16px; +} + +.content-wp { + color: #000; + background-color: #fff; +} + +.content-wp hr { + background-color: rgba(0, 0, 0, 0.08); +} + +ion-app.wp [padding], +ion-app.wp [padding] .scroll-content { + padding: 16px; +} + +ion-app.wp [padding-top], +ion-app.wp [padding-top] .scroll-content { + padding-top: 16px; +} + +ion-app.wp [padding-left], +ion-app.wp [padding-left] .scroll-content { + padding-left: 16px; +} + +ion-app.wp [padding-right], +ion-app.wp [padding-right] .scroll-content { + padding-right: 16px; +} + +ion-app.wp [padding-bottom], +ion-app.wp [padding-bottom] .scroll-content { + padding-bottom: 16px; +} + +ion-app.wp [padding-vertical], +ion-app.wp [padding-vertical] .scroll-content { + padding-top: 16px; + padding-bottom: 16px; +} + +ion-app.wp [padding-horizontal], +ion-app.wp [padding-horizontal] .scroll-content { + padding-right: 16px; + padding-left: 16px; +} + +ion-app.wp [margin], +ion-app.wp [margin] .scroll-content { + margin: 16px; +} + +ion-app.wp [margin-top], +ion-app.wp [margin-top] .scroll-content { + margin-top: 16px; +} + +ion-app.wp [margin-left], +ion-app.wp [margin-left] .scroll-content { + margin-left: 16px; +} + +ion-app.wp [margin-right], +ion-app.wp [margin-right] .scroll-content { + margin-right: 16px; +} + +ion-app.wp [margin-bottom], +ion-app.wp [margin-bottom] .scroll-content { + margin-bottom: 16px; +} + +ion-app.wp [margin-vertical], +ion-app.wp [margin-vertical] .scroll-content { + margin-top: 16px; + margin-bottom: 16px; +} + +ion-app.wp [margin-horizontal], +ion-app.wp [margin-horizontal] .scroll-content { + margin-right: 16px; + margin-left: 16px; +} + +ion-datetime { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + overflow: hidden; +} + +.datetime-text { + overflow: hidden; + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + min-width: 16px; + min-height: 1.2em; + font-size: inherit; + line-height: 1.2; + text-overflow: ellipsis; + white-space: nowrap; +} + +.datetime-disabled, +.item-datetime-disabled ion-label { + opacity: .4; + pointer-events: none; +} + +.item-label-stacked ion-datetime, +.item-label-floating ion-datetime { + padding-left: 0; + width: 100%; +} + +.datetime-ios { + padding: 11px 8px 11px 16px; +} + +.datetime-md { + padding: 13px 8px 13px 16px; +} + +.datetime-wp { + padding: 13px 8px 13px 16px; + min-width: 45%; +} + +.datetime-wp .datetime-text { + padding: 0 8px; + min-height: 3.4rem; + border: 2px solid rgba(0, 0, 0, 0.5); + line-height: 3rem; +} + +.item-datetime .datetime-wp ion-label[floating] { + -webkit-transform: translate3d(8px, 41px, 0); + transform: translate3d(8px, 41px, 0); +} + +.fab { + -moz-appearance: none; + -ms-appearance: none; + -webkit-appearance: none; + appearance: none; + position: relative; + z-index: 0; + display: block; + overflow: hidden; + width: 56px; + height: 56px; + border-radius: 50%; + font-size: 14px; + line-height: 56px; + text-align: center; + text-overflow: ellipsis; + text-transform: none; + white-space: nowrap; + cursor: pointer; + transition: background-color, opacity 100ms linear; + background-clip: padding-box; + -webkit-font-kerning: none; + font-kerning: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + contain: strict; +} + +.fab ion-icon { + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + font-size: 2.4rem; +} + +.fab[mini] { + margin: 8px; + width: 40px; + height: 40px; + line-height: 40px; +} + +.fab[mini] .fab-close-icon { + line-height: 40px; +} + +ion-fab { + position: absolute; + z-index: 999; +} + +ion-fab[center] { + left: 50%; + margin-left: -28px; +} + +ion-fab[middle] { + top: 50%; + margin-top: -28px; +} + +ion-fab[top] { + top: 10px; +} + +ion-fab[right] { + right: 10px; +} + +ion-fab[bottom] { + bottom: 10px; +} + +ion-fab[left] { + left: 10px; +} + +ion-fab[top][edge] { + top: -28px; +} + +ion-fab[bottom][edge] { + bottom: -28px; +} + +ion-fab-list { + position: absolute; + top: 0; + display: none; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + margin: 66px 0; + min-width: 56px; + min-height: 56px; +} + +.fab-in-list { + margin: 8px 0; + width: 40px; + height: 40px; + opacity: 0; + visibility: hidden; + -webkit-transform: scale(0); + transform: scale(0); +} + +.fab-in-list.show { + opacity: 1; + visibility: visible; + -webkit-transform: scale(1); + transform: scale(1); +} + +ion-fab-list[side=left] .fab-in-list, +ion-fab-list[side=right] .fab-in-list { + margin: 0 8px; +} + +ion-fab-list[side=top] { + top: auto; + bottom: 0; + -webkit-flex-direction: column-reverse; + -ms-flex-direction: column-reverse; + flex-direction: column-reverse; +} + +ion-fab-list[side=left] { + right: 0; + -webkit-flex-direction: row-reverse; + -ms-flex-direction: row-reverse; + flex-direction: row-reverse; + margin: 0 66px; +} + +ion-fab-list[side=right] { + left: 0; + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row; + margin: 0 66px; +} + +.fab-list-active { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; +} + +.fab-close-icon { + position: absolute; + top: 0; + right: 0; + left: 0; + line-height: 56px; + opacity: 0; + -webkit-transform: scale(0.4) rotateZ(-45deg); + transform: scale(0.4) rotateZ(-45deg); + transition: all ease-in-out 300ms; + transition-property: opacity, -webkit-transform; + transition-property: transform, opacity; + transition-property: transform, opacity, -webkit-transform; +} + +.fab .button-inner { + transition: all ease-in-out 300ms; + transition-property: opacity, -webkit-transform; + transition-property: transform, opacity; + transition-property: transform, opacity, -webkit-transform; +} + +.fab-close-active .fab-close-icon { + opacity: 1; + -webkit-transform: scale(1) rotateZ(0deg); + transform: scale(1) rotateZ(0deg); +} + +.fab-close-active .button-inner { + opacity: 0; + -webkit-transform: scale(0.4) rotateZ(45deg); + transform: scale(0.4) rotateZ(45deg); +} + +.fab-ios { + color: #fff; + background-color: #387ef5; +} + +.fab-ios.activated { + background-color: #3474e1; +} + +.fab-ios-in-list { + color: #000; + background-color: #f4f4f4; + transition: opacity 200ms ease 10ms, -webkit-transform 200ms ease 10ms; + transition: transform 200ms ease 10ms, opacity 200ms ease 10ms; + transition: transform 200ms ease 10ms, opacity 200ms ease 10ms, -webkit-transform 200ms ease 10ms; +} + +.fab-ios-in-list.activated { + background-color: #e0e0e0; +} + +.fab-ios-primary { + color: #fff; + background-color: #387ef5; +} + +.fab-ios-primary.activated { + background-color: #3474e1; +} + +.fab-ios-secondary { + color: #fff; + background-color: #32db64; +} + +.fab-ios-secondary.activated { + background-color: #2ec95c; +} + +.fab-ios-danger { + color: #fff; + background-color: #f53d3d; +} + +.fab-ios-danger.activated { + background-color: #e13838; +} + +.fab-ios-light { + color: #000; + background-color: #f4f4f4; +} + +.fab-ios-light.activated { + background-color: #e0e0e0; +} + +.fab-ios-dark { + color: #fff; + background-color: #222; +} + +.fab-ios-dark.activated { + background-color: #343434; +} + +.fab-md { + color: #fff; + background-color: #387ef5; + box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.14), 0 4px 5px rgba(0, 0, 0, 0.1); + transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1); +} + +.fab-md.activated { + background-color: #3474e1; + box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.4), 0 4px 7px 0 rgba(0, 0, 0, 0.1); +} + +.fab-md-in-list { + color: #000; + background-color: #f4f4f4; + transition: opacity 200ms ease 10ms, box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 200ms ease 10ms; + transition: transform 200ms ease 10ms, opacity 200ms ease 10ms, box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1); + transition: transform 200ms ease 10ms, opacity 200ms ease 10ms, box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 200ms ease 10ms; +} + +.fab-md-in-list.activated { + background-color: #e0e0e0; +} + +.fab-md .button-effect { + background-color: #fff; +} + +.fab-md-primary { + color: #fff; + background-color: #387ef5; +} + +.fab-md-primary.activated { + background-color: #3474e1; +} + +.fab-md-primary .button-effect { + background-color: #fff; +} + +.fab-md-secondary { + color: #fff; + background-color: #32db64; +} + +.fab-md-secondary.activated { + background-color: #2ec95c; +} + +.fab-md-secondary .button-effect { + background-color: #fff; +} + +.fab-md-danger { + color: #fff; + background-color: #f53d3d; +} + +.fab-md-danger.activated { + background-color: #e13838; +} + +.fab-md-danger .button-effect { + background-color: #fff; +} + +.fab-md-light { + color: #000; + background-color: #f4f4f4; +} + +.fab-md-light.activated { + background-color: #e0e0e0; +} + +.fab-md-light .button-effect { + background-color: #000; +} + +.fab-md-dark { + color: #fff; + background-color: #222; +} + +.fab-md-dark.activated { + background-color: #343434; +} + +.fab-md-dark .button-effect { + background-color: #fff; +} + +.fab-wp { + color: #fff; + background-color: #387ef5; +} + +.fab-wp.activated { + background-color: #3474e1; +} + +.fab-wp-in-list { + color: #000; + background-color: #f4f4f4; + transition: opacity 200ms ease 10ms, -webkit-transform 200ms ease 10ms; + transition: transform 200ms ease 10ms, opacity 200ms ease 10ms; + transition: transform 200ms ease 10ms, opacity 200ms ease 10ms, -webkit-transform 200ms ease 10ms; +} + +.fab-wp-in-list.activated { + background-color: #e0e0e0; +} + +.fab-wp-primary { + color: #fff; + background-color: #387ef5; +} + +.fab-wp-primary.activated { + background-color: #3474e1; +} + +.fab-wp-secondary { + color: #fff; + background-color: #32db64; +} + +.fab-wp-secondary.activated { + background-color: #2ec95c; +} + +.fab-wp-danger { + color: #fff; + background-color: #f53d3d; +} + +.fab-wp-danger.activated { + background-color: #e13838; +} + +.fab-wp-light { + color: #000; + background-color: #f4f4f4; +} + +.fab-wp-light.activated { + background-color: #e0e0e0; +} + +.fab-wp-dark { + color: #fff; + background-color: #222; +} + +.fab-wp-dark.activated { + background-color: #343434; +} + +ion-grid { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; + padding: 5px; + width: 100%; +} + +ion-row { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + width: 100%; +} + +ion-row[wrap] { + -webkit-flex-wrap: wrap; + -ms-flex-wrap: wrap; + flex-wrap: wrap; +} + +ion-row[top] { + -webkit-align-items: flex-start; + -ms-flex-align: start; + align-items: flex-start; +} + +ion-row[bottom] { + -webkit-align-items: flex-end; + -ms-flex-align: end; + align-items: flex-end; +} + +ion-row[center] { + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; +} + +ion-row[stretch] { + -webkit-align-items: stretch; + -ms-flex-align: stretch; + align-items: stretch; +} + +ion-row[baseline] { + -webkit-align-items: baseline; + -ms-flex-align: baseline; + align-items: baseline; +} + +ion-col { + display: block; + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + padding: 5px; + width: 100%; +} + +ion-col[top] { + -webkit-align-self: flex-start; + -ms-flex-item-align: start; + align-self: flex-start; +} + +ion-col[bottom] { + -webkit-align-self: flex-end; + -ms-flex-item-align: end; + align-self: flex-end; +} + +ion-col[center] { + -webkit-align-self: center; + -ms-flex-item-align: center; + -ms-grid-row-align: center; + align-self: center; +} + +ion-col[stretch] { + -webkit-align-self: stretch; + -ms-flex-item-align: stretch; + -ms-grid-row-align: stretch; + align-self: stretch; +} + +ion-col[baseline] { + -webkit-align-self: baseline; + -ms-flex-item-align: baseline; + align-self: baseline; +} + +ion-col[offset-10] { + margin-left: 10%; +} + +ion-col[offset-20] { + margin-left: 20%; +} + +ion-col[offset-25] { + margin-left: 25%; +} + +ion-col[offset-33], ion-col[offset-34] { + margin-left: 33.3333%; +} + +ion-col[offset-50] { + margin-left: 50%; +} + +ion-col[offset-66], ion-col[offset-67] { + margin-left: 66.6666%; +} + +ion-col[offset-75] { + margin-left: 75%; +} + +ion-col[offset-80] { + margin-left: 80%; +} + +ion-col[offset-90] { + margin-left: 90%; +} + +ion-col[width-10] { + -webkit-flex: 0 0 10%; + -ms-flex: 0 0 10%; + flex: 0 0 10%; + max-width: 10%; +} + +ion-col[width-20] { + -webkit-flex: 0 0 20%; + -ms-flex: 0 0 20%; + flex: 0 0 20%; + max-width: 20%; +} + +ion-col[width-25] { + -webkit-flex: 0 0 25%; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; +} + +ion-col[width-33], ion-col[width-34] { + -webkit-flex: 0 0 33.3333%; + -ms-flex: 0 0 33.3333%; + flex: 0 0 33.3333%; + max-width: 33.3333%; +} + +ion-col[width-50] { + -webkit-flex: 0 0 50%; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; +} + +ion-col[width-66], ion-col[width-67] { + -webkit-flex: 0 0 66.6666%; + -ms-flex: 0 0 66.6666%; + flex: 0 0 66.6666%; + max-width: 66.6666%; +} + +ion-col[width-75] { + -webkit-flex: 0 0 75%; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; +} + +ion-col[width-80] { + -webkit-flex: 0 0 80%; + -ms-flex: 0 0 80%; + flex: 0 0 80%; + max-width: 80%; +} + +ion-col[width-90] { + -webkit-flex: 0 0 90%; + -ms-flex: 0 0 90%; + flex: 0 0 90%; + max-width: 90%; +} + +@media (max-width: 567px) { + [responsive-sm] { + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; + } + [responsive-sm] ion-col[width-10], [responsive-sm] ion-col[width-20], [responsive-sm] ion-col[width-25], [responsive-sm] ion-col[width-33], [responsive-sm] ion-col[width-34], [responsive-sm] ion-col[width-50], [responsive-sm] ion-col[width-66], [responsive-sm] ion-col[width-67], [responsive-sm] ion-col[width-75], [responsive-sm] ion-col[width-80], [responsive-sm] ion-col[width-90] { + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + margin-bottom: 15px; + margin-left: 0; + width: 100%; + max-width: 100%; + } +} + +@media (max-width: 767px) { + [responsive-md] { + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; + } + [responsive-md] ion-col[width-10], [responsive-md] ion-col[width-20], [responsive-md] ion-col[width-25], [responsive-md] ion-col[width-33], [responsive-md] ion-col[width-34], [responsive-md] ion-col[width-50], [responsive-md] ion-col[width-66], [responsive-md] ion-col[width-67], [responsive-md] ion-col[width-75], [responsive-md] ion-col[width-80], [responsive-md] ion-col[width-90] { + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + margin-bottom: 15px; + margin-left: 0; + width: 100%; + max-width: 100%; + } +} + +@media (max-width: 1023px) { + [responsive-lg] { + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; + } + [responsive-lg] ion-col[width-10], [responsive-lg] ion-col[width-20], [responsive-lg] ion-col[width-25], [responsive-lg] ion-col[width-33], [responsive-lg] ion-col[width-34], [responsive-lg] ion-col[width-50], [responsive-lg] ion-col[width-66], [responsive-lg] ion-col[width-67], [responsive-lg] ion-col[width-75], [responsive-lg] ion-col[width-80], [responsive-lg] ion-col[width-90] { + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + margin-bottom: 15px; + margin-left: 0; + width: 100%; + max-width: 100%; + } +} + +ion-icon { + display: inline-block; + font-size: 1.2em; +} + +ion-icon[small] { + min-height: 1.1em; + font-size: 1.1em; +} + +.icon-ios-primary { + color: #387ef5; +} + +.icon-ios-secondary { + color: #32db64; +} + +.icon-ios-danger { + color: #f53d3d; +} + +.icon-ios-light { + color: #f4f4f4; +} + +.icon-ios-dark { + color: #222; +} + +.icon-md-primary { + color: #387ef5; +} + +.icon-md-secondary { + color: #32db64; +} + +.icon-md-danger { + color: #f53d3d; +} + +.icon-md-light { + color: #f4f4f4; +} + +.icon-md-dark { + color: #222; +} + +.icon-wp-primary { + color: #387ef5; +} + +.icon-wp-secondary { + color: #32db64; +} + +.icon-wp-danger { + color: #f53d3d; +} + +.icon-wp-light { + color: #f4f4f4; +} + +.icon-wp-dark { + color: #222; +} + +ion-img { + display: inline-block; + min-width: 20px; + min-height: 20px; + background: #eee; + contain: strict; +} + +ion-img img { + object-fit: cover; +} + +ion-img.img-unloaded img { + display: none; +} + +ion-img.img-loaded img { + display: block; +} + +ion-infinite-scroll { + display: block; + width: 100%; +} + +ion-infinite-scroll-content { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; + height: 100%; + min-height: 84px; + text-align: center; +} + +.infinite-loading { + display: none; + margin: 0 0 32px 0; + width: 100%; +} + +.infinite-loading-text { + margin: 4px 32px 0 32px; + color: #666; +} + +ion-infinite-scroll-content[state=loading] .infinite-loading { + display: block; +} + +ion-infinite-scroll-content[state=disabled] { + display: none; +} + +ion-input, +ion-textarea { + position: relative; + display: block; + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + width: 100%; +} + +.item-input ion-input, +.item-input ion-textarea { + position: static; +} + +.item.item-textarea { + -webkit-align-items: stretch; + -ms-flex-align: stretch; + align-items: stretch; +} + +.text-input { + -moz-appearance: none; + -ms-appearance: none; + -webkit-appearance: none; + appearance: none; + display: inline-block; + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + width: 92%; + width: calc(100% - 10px); + border: 0; + border-radius: 0; + background: transparent; +} + +.text-input::-moz-placeholder { + color: #999; +} + +.text-input:-ms-input-placeholder { + color: #999; +} + +.text-input::-webkit-input-placeholder { + text-indent: 0; + color: #999; +} + +textarea.text-input { + display: block; +} + +.text-input[disabled] { + opacity: .4; +} + +input.text-input:-webkit-autofill { + background-color: transparent; +} + +.platform-mobile textarea.text-input { + resize: none; +} + +.input-cover { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} + +.input-has-focus .input-cover { + display: none; +} + +.input-has-focus { + pointer-events: none; +} + +.input-has-focus input, +.input-has-focus textarea, +.input-has-focus a, +.input-has-focus button { + pointer-events: auto; +} + +[next-input] { + position: absolute; + bottom: 20px; + padding: 0; + width: 1px; + height: 1px; + border: 0; + background: transparent; + pointer-events: none; +} + +.text-input-clear-icon { + position: absolute; + top: 0; + display: none; + margin: 0; + padding: 0; + height: 100%; + background-repeat: no-repeat; + background-position: center; +} + +.input-has-focus.input-has-value .text-input-clear-icon { + display: block; +} + +.text-input-ios { + margin: 11px 8px 11px 0; + padding: 0; + width: calc(100% - 8px); +} + +.input-ios .inset-input { + margin: 5.5px 16px 5.5px 0; + padding: 5.5px 8px 5.5px 8px; +} + +.item-ios.item-label-stacked .text-input, +.item-ios.item-label-floating .text-input { + margin-top: 8px; + margin-bottom: 8px; + margin-left: 0; + width: calc(100% - 8px); +} + +.item-label-stacked .select-ios, +.item-label-floating .select-ios { + padding-top: 8px; + padding-bottom: 8px; + padding-left: 0; +} + +.input-ios[clearInput] { + position: relative; +} + +.input-ios .text-input { + padding-right: 30px; +} + +.input-ios .text-input-clear-icon { + background-image: url("data:image/svg+xml;charset=utf-8,"); + right: 8px; + width: 30px; + background-size: 18px; +} + +.text-input-md { + margin: 13px 8px 13px 8px; + padding: 0; + width: calc(100% - 8px - 8px); +} + +.input-md .inset-input { + margin: 6.5px 16px 6.5px 16px; + padding: 6.5px 8px 6.5px 8px; +} + +.item-md.item-input.input-has-focus .item-inner { + border-bottom-color: #387ef5; + box-shadow: inset 0 -1px 0 0 #387ef5; +} + +.list-md .item-input.input-has-focus:last-child { + border-bottom-color: #387ef5; + box-shadow: inset 0 -1px 0 0 #387ef5; +} + +.list-md .item-input.input-has-focus:last-child .item-inner { + box-shadow: none; +} + +.item-md.item-input.ng-valid.input-has-value:not(.input-has-focus) .item-inner { + border-bottom-color: #32db64; + box-shadow: inset 0 -1px 0 0 #32db64; +} + +.list-md .item-input.ng-valid.input-has-value:not(.input-has-focus):last-child { + border-bottom-color: #32db64; + box-shadow: inset 0 -1px 0 0 #32db64; +} + +.list-md .item-input.ng-valid.input-has-value:not(.input-has-focus):last-child .item-inner { + box-shadow: none; +} + +.item-md.item-input.ng-invalid.ng-touched:not(.input-has-focus) .item-inner { + border-bottom-color: #f53d3d; + box-shadow: inset 0 -1px 0 0 #f53d3d; +} + +.list-md .item-input.ng-invalid.ng-touched:not(.input-has-focus):last-child { + border-bottom-color: #f53d3d; + box-shadow: inset 0 -1px 0 0 #f53d3d; +} + +.list-md .item-input.ng-invalid.ng-touched:not(.input-has-focus):last-child .item-inner { + box-shadow: none; +} + +.item-label-stacked .text-input-md, +.item-label-floating .text-input-md { + margin-top: 8px; + margin-bottom: 8px; + margin-left: 0; + width: calc(100% - 8px); +} + +.item-label-stacked .select-md, +.item-label-floating .select-md { + padding-top: 8px; + padding-bottom: 8px; + padding-left: 0; +} + +.input-md[clearInput] { + position: relative; +} + +.input-md[clearInput] .text-input { + padding-right: 30px; +} + +.input-md .text-input-clear-icon { + background-image: url("data:image/svg+xml;charset=utf-8,"); + right: 8px; + width: 30px; + background-size: 22px; +} + +.text-input-wp { + margin: 13px 8px 13px 8px; + padding: 0 8px; + width: calc(100% - 8px - 8px); + border: 2px solid rgba(0, 0, 0, 0.5); + line-height: 3rem; +} + +.item-wp .inset-input { + margin: 6.5px 16px 6.5px 16px; + padding: 6.5px 8px 6.5px 8px; +} + +.item-wp.item-input.input-has-focus .text-input { + border-color: #387ef5; +} + +.item-wp.item-input.ng-valid.input-has-value:not(.input-has-focus) .text-input { + border-color: #32db64; +} + +.item-wp.item-input.ng-invalid.ng-touched:not(.input-has-focus) .text-input { + border-color: #f53d3d; +} + +.item-label-stacked .text-input-wp, +.item-label-floating .text-input-wp, +.item-label-stacked .select-wp, +.item-label-floating .select-wp { + margin-top: 8px; + margin-bottom: 8px; + margin-left: 0; + width: calc(100% - 8px); +} + +.item-wp.item-label-stacked [item-right], +.item-wp.item-label-floating [item-right] { + -webkit-align-self: flex-end; + -ms-flex-item-align: end; + align-self: flex-end; +} + +.input-wp[clearInput] { + position: relative; +} + +.input-wp[clearInput] .text-input { + padding-right: 30px; +} + +.input-wp .text-input-clear-icon { + background-image: url("data:image/svg+xml;charset=utf-8,"); + right: 8px; + width: 30px; + background-size: 22px; +} + +.item { + contain: content; +} + +.item-block { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + overflow: hidden; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + -webkit-justify-content: space-between; + -ms-flex-pack: justify; + justify-content: space-between; + margin: 0; + padding: 0; + width: 100%; + min-height: 4.4rem; + border: 0; + font-weight: normal; + line-height: normal; + text-align: initial; + text-decoration: none; + color: inherit; +} + +.item-inner { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + overflow: hidden; + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + -webkit-flex-direction: inherit; + -ms-flex-direction: inherit; + flex-direction: inherit; + -webkit-align-items: inherit; + -ms-flex-align: inherit; + align-items: inherit; + -webkit-align-self: stretch; + -ms-flex-item-align: stretch; + align-self: stretch; + margin: 0; + padding: 0; + min-height: inherit; + border: 0; +} + +.input-wrapper { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + overflow: hidden; + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + -webkit-flex-direction: inherit; + -ms-flex-direction: inherit; + flex-direction: inherit; + -webkit-align-items: inherit; + -ms-flex-align: inherit; + align-items: inherit; + -webkit-align-self: stretch; + -ms-flex-item-align: stretch; + align-self: stretch; + text-overflow: ellipsis; +} + +.item[no-lines], +.item.item[no-lines] .item-inner { + border: 0; +} + +ion-item-group { + display: block; +} + +ion-item-divider { + z-index: 100; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + overflow: hidden; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + -webkit-justify-content: space-between; + -ms-flex-pack: justify; + justify-content: space-between; + margin: 0; + padding: 0; + width: 100%; + min-height: 30px; +} + +ion-item-divider[sticky] { + position: -webkit-sticky; + position: sticky; + top: 0; +} + +[vertical-align-top], +ion-input.item { + -webkit-align-items: flex-start; + -ms-flex-align: start; + align-items: flex-start; +} + +.item > ion-icon[small]:first-child, +.item-inner > ion-icon[small]:first-child { + min-width: 18px; +} + +.item > ion-icon:first-child, +.item-inner > ion-icon:first-child { + min-width: 24px; + text-align: center; +} + +.item > ion-icon, +.item-inner > ion-icon { + min-height: 2.8rem; + font-size: 2.8rem; + line-height: 1; +} + +.item > ion-icon[large], +.item-inner > ion-icon[large] { + min-height: 3.2rem; + font-size: 3.2rem; +} + +.item > ion-icon[small], +.item-inner > ion-icon[small] { + min-height: 1.8rem; + font-size: 1.8rem; +} + +ion-avatar, +ion-thumbnail { + display: block; + line-height: 1; +} + +ion-avatar img, +ion-thumbnail img { + display: block; +} + +.item-cover { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: transparent; + cursor: pointer; +} + +ion-reorder { + display: none; + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; + max-width: 40px; + height: 100%; + font-size: 1.7em; + opacity: .25; + -webkit-transform: translate3d(160%, 0, 0); + transform: translate3d(160%, 0, 0); + transition: -webkit-transform 140ms ease-in; + transition: transform 140ms ease-in; + transition: transform 140ms ease-in, -webkit-transform 140ms ease-in; + pointer-events: all; + -ms-touch-action: manipulation; + touch-action: manipulation; +} + +ion-reorder ion-icon { + pointer-events: none; +} + +.reorder-enabled ion-reorder { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; +} + +.reorder-visible ion-reorder { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); +} + +.reorder-list-active .item, +.reorder-list-active .item-wrapper { + transition: -webkit-transform 300ms; + transition: transform 300ms; + transition: transform 300ms, -webkit-transform 300ms; + will-change: transform; +} + +.reorder-list-active .item-inner { + pointer-events: none; +} + +.item-wrapper.reorder-active, +.item.reorder-active, +.reorder-active { + z-index: 4; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); + opacity: .8; + transition: none; + pointer-events: none; +} + +ion-item-sliding { + position: relative; + display: block; + overflow: hidden; + width: 100%; +} + +ion-item-sliding .item { + position: static; +} + +ion-item-options { + position: absolute; + top: 0; + right: 0; + z-index: 1; + display: none; + -webkit-justify-content: flex-end; + -ms-flex-pack: end; + justify-content: flex-end; + height: 100%; + font-size: 14px; + visibility: hidden; +} + +ion-item-options[side=left] { + right: auto; + left: 0; + -webkit-justify-content: flex-start; + -ms-flex-pack: start; + justify-content: flex-start; +} + +ion-item-options .button { + margin: 0; + padding: 0 .7em; + height: 100%; + border-radius: 0; + box-shadow: none; + box-sizing: content-box; +} + +ion-item-options:not([icon-left]) .button:not([icon-only]) .button-inner { + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; +} + +ion-item-options:not([icon-left]) .button:not([icon-only]) ion-icon { + padding-right: 0; + padding-bottom: .3em; + padding-left: 0; +} + +ion-item-sliding.active-slide .item, +ion-item-sliding.active-slide .item.activated { + position: relative; + z-index: 2; + opacity: 1; + transition: -webkit-transform 500ms cubic-bezier(0.36, 0.66, 0.04, 1); + transition: transform 500ms cubic-bezier(0.36, 0.66, 0.04, 1); + transition: transform 500ms cubic-bezier(0.36, 0.66, 0.04, 1), -webkit-transform 500ms cubic-bezier(0.36, 0.66, 0.04, 1); + pointer-events: none; + will-change: transform; +} + +ion-item-sliding.active-slide ion-item-options { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; +} + +ion-item-sliding.active-slide.active-options-left ion-item-options[side=left] { + width: 100%; + visibility: visible; +} + +ion-item-sliding.active-slide.active-options-right ion-item-options:not([side=left]) { + width: 100%; + visibility: visible; +} + +button[expandable] { + -webkit-flex-shrink: 0; + -ms-flex-negative: 0; + flex-shrink: 0; + transition-duration: 0; + transition-property: none; + transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1); +} + +ion-item-sliding.active-swipe-right button[expandable] { + -webkit-order: 1; + -ms-flex-order: 1; + order: 1; + padding-left: 90%; + transition-duration: .6s; + transition-property: padding-left; +} + +ion-item-sliding.active-swipe-left button[expandable] { + -webkit-order: -1; + -ms-flex-order: -1; + order: -1; + padding-right: 90%; + transition-duration: .6s; + transition-property: padding-right; +} + +.item-ios { + position: relative; + padding-left: 16px; + border-radius: 0; + font-size: 1.7rem; + color: #000; + background-color: #fff; + transition: background-color 200ms linear; +} + +.item-ios.activated { + background-color: #d9d9d9; + transition-duration: 0ms; +} + +.item-ios h1 { + margin: 0 0 2px; + font-size: 2.4rem; + font-weight: normal; +} + +.item-ios h2 { + margin: 0 0 2px; + font-size: 1.7rem; + font-weight: normal; +} + +.item-ios h3, +.item-ios h4, +.item-ios h5, +.item-ios h6 { + margin: 0 0 3px; + font-size: 1.4rem; + font-weight: normal; + line-height: normal; +} + +.item-ios p { + overflow: inherit; + margin: 0 0 2px; + font-size: 1.4rem; + line-height: normal; + text-overflow: inherit; + color: #8e9093; +} + +.item-ios h2:last-child, +.item-ios h3:last-child, +.item-ios h4:last-child, +.item-ios h5:last-child, +.item-ios h6:last-child, +.item-ios p:last-child { + margin-bottom: 0; +} + +.item-ios.item-block .item-inner { + padding-right: 8px; + border-bottom: 0.55px solid #c8c7cc; +} + +.item-ios [item-left] { + margin: 8px 16px 8px 0; +} + +.item-ios [item-right] { + margin: 8px 8px 8px 8px; +} + +.item-ios ion-icon[item-left], +.item-ios ion-icon[item-right] { + margin-top: 9px; + margin-bottom: 8px; + margin-left: 0; +} + +.item-ios .item-button { + padding: 0 .5em; + height: 24px; + font-size: 1.3rem; +} + +.item-ios .item-button[icon-only] ion-icon, +.item-ios .item-button[icon-only] { + padding: 0 1px; +} + +.item-ios ion-avatar[item-left], +.item-ios ion-thumbnail[item-left] { + margin: 8px 16px 8px 0; +} + +.item-ios ion-avatar[item-right], +.item-ios ion-thumbnail[item-right] { + margin: 8px; +} + +.item-ios ion-avatar { + min-width: 36px; + min-height: 36px; +} + +.item-ios ion-avatar ion-img, +.item-ios ion-avatar img { + width: 36px; + height: 36px; + border-radius: 50%; + overflow: hidden; +} + +.item-ios ion-thumbnail { + min-width: 56px; + min-height: 56px; +} + +.item-ios ion-thumbnail ion-img, +.item-ios ion-thumbnail img { + width: 56px; + height: 56px; +} + +.item-ios[detail-push] .item-inner, +button.item-ios:not([detail-none]) .item-inner, +a.item-ios:not([detail-none]) .item-inner { + background-image: url("data:image/svg+xml;charset=utf-8,"); + padding-right: 32px; + background-repeat: no-repeat; + background-position: right 14px center; + background-size: 14px 14px; +} + +ion-item-group .item-ios:first-child .item-inner { + border-top-width: 0; +} + +ion-item-group .item-ios:last-child .item-inner, +ion-item-group .item-wrapper:last-child .item-ios .item-inner { + border: 0; +} + +.item-divider-ios { + padding-left: 16px; + color: #222; + background-color: #f7f7f7; +} + +.item-ios .text-ios-primary { + color: #387ef5; +} + +.item-ios-primary, +.item-divider-ios-primary { + color: #fff; + background-color: #387ef5; +} + +.item-ios-primary p, +.item-divider-ios-primary p { + color: #fff; +} + +.item-ios-primary.activated, +.item-divider-ios-primary.activated { + background-color: #3474e1; +} + +.item-ios .text-ios-secondary { + color: #32db64; +} + +.item-ios-secondary, +.item-divider-ios-secondary { + color: #fff; + background-color: #32db64; +} + +.item-ios-secondary p, +.item-divider-ios-secondary p { + color: #fff; +} + +.item-ios-secondary.activated, +.item-divider-ios-secondary.activated { + background-color: #2ec95c; +} + +.item-ios .text-ios-danger { + color: #f53d3d; +} + +.item-ios-danger, +.item-divider-ios-danger { + color: #fff; + background-color: #f53d3d; +} + +.item-ios-danger p, +.item-divider-ios-danger p { + color: #fff; +} + +.item-ios-danger.activated, +.item-divider-ios-danger.activated { + background-color: #e13838; +} + +.item-ios .text-ios-light { + color: #f4f4f4; +} + +.item-ios-light, +.item-divider-ios-light { + color: #000; + background-color: #f4f4f4; +} + +.item-ios-light p, +.item-divider-ios-light p { + color: #000; +} + +.item-ios-light.activated, +.item-divider-ios-light.activated { + background-color: #e0e0e0; +} + +.item-ios .text-ios-dark { + color: #222; +} + +.item-ios-dark, +.item-divider-ios-dark { + color: #fff; + background-color: #222; +} + +.item-ios-dark p, +.item-divider-ios-dark p { + color: #fff; +} + +.item-ios-dark.activated, +.item-divider-ios-dark.activated { + background-color: #343434; +} + +.list-ios ion-item-sliding { + background-color: #fff; +} + +.item-md { + position: relative; + padding-right: 0; + padding-left: 16px; + font-size: 1.6rem; + font-weight: normal; + text-transform: none; + color: #000; + background-color: #fff; + box-shadow: none; + transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1); +} + +.item-md.activated { + background-color: #f1f1f1; +} + +.item-md[no-lines] { + border-width: 0; +} + +.item-md h1 { + margin: 0 0 2px; + font-size: 2.4rem; + font-weight: normal; +} + +.item-md h2 { + margin: 2px 0; + font-size: 1.6rem; + font-weight: normal; +} + +.item-md h3, +.item-md h4, +.item-md h5, +.item-md h6 { + margin: 2px 0; + font-size: 1.4rem; + font-weight: normal; + line-height: normal; +} + +.item-md p { + overflow: inherit; + margin: 0 0 2px; + font-size: 1.4rem; + line-height: normal; + text-overflow: inherit; + color: #666; +} + +.item-md.item-block .item-inner { + padding-right: 8px; + border-bottom: 1px solid #dedede; +} + +.item-md [item-left], +.item-md [item-right] { + margin: 9px 8px 9px 0; +} + +.item-md ion-icon[item-left], +.item-md ion-icon[item-right] { + margin-top: 11px; + margin-bottom: 10px; + margin-left: 0; +} + +.item-md .item-button { + padding: 0 .6em; + height: 25px; + font-size: 1.2rem; +} + +.item-md .item-button[icon-only] ion-icon, +.item-md .item-button[icon-only] { + padding: 0 1px; +} + +.item-md ion-icon[item-left] + .item-inner, +.item-md ion-icon[item-left] + .item-input { + margin-left: 24px; +} + +.item-md ion-avatar[item-left], +.item-md ion-thumbnail[item-left] { + margin: 8px 16px 8px 0; +} + +.item-md ion-avatar[item-right], +.item-md ion-thumbnail[item-right] { + margin: 8px; +} + +.item-md ion-avatar { + min-width: 40px; + min-height: 40px; +} + +.item-md ion-avatar ion-img, +.item-md ion-avatar img { + width: 40px; + height: 40px; + border-radius: 50%; + overflow: hidden; +} + +.item-md ion-thumbnail { + min-width: 80px; + min-height: 80px; +} + +.item-md ion-thumbnail ion-img, +.item-md ion-thumbnail img { + width: 80px; + height: 80px; +} + +ion-item-group .item-md:first-child .item-inner { + border-top-width: 0; +} + +ion-item-group .item-md:last-child .item-inner, +ion-item-group .item-md .item-wrapper:last-child .item-inner { + border: 0; +} + +.item-divider-md { + padding-left: 16px; + color: #858585; + background-color: #fff; + border-bottom: 1px solid #dedede; + font-size: 1.4rem; +} + +.item-md .text-md-primary { + color: #387ef5; +} + +.item-md-primary, +.item-divider-md-primary { + color: #fff; + background-color: #387ef5; +} + +.item-md-primary p, +.item-divider-md-primary p { + color: #fff; +} + +.item-md-primary.activated, +.item-divider-md-primary.activated { + background-color: #3474e1; +} + +.item-md .text-md-secondary { + color: #32db64; +} + +.item-md-secondary, +.item-divider-md-secondary { + color: #fff; + background-color: #32db64; +} + +.item-md-secondary p, +.item-divider-md-secondary p { + color: #fff; +} + +.item-md-secondary.activated, +.item-divider-md-secondary.activated { + background-color: #2ec95c; +} + +.item-md .text-md-danger { + color: #f53d3d; +} + +.item-md-danger, +.item-divider-md-danger { + color: #fff; + background-color: #f53d3d; +} + +.item-md-danger p, +.item-divider-md-danger p { + color: #fff; +} + +.item-md-danger.activated, +.item-divider-md-danger.activated { + background-color: #e13838; +} + +.item-md .text-md-light { + color: #f4f4f4; +} + +.item-md-light, +.item-divider-md-light { + color: #000; + background-color: #f4f4f4; +} + +.item-md-light p, +.item-divider-md-light p { + color: #000; +} + +.item-md-light.activated, +.item-divider-md-light.activated { + background-color: #e0e0e0; +} + +.item-md .text-md-dark { + color: #222; +} + +.item-md-dark, +.item-divider-md-dark { + color: #fff; + background-color: #222; +} + +.item-md-dark p, +.item-divider-md-dark p { + color: #fff; +} + +.item-md-dark.activated, +.item-divider-md-dark.activated { + background-color: #343434; +} + +.list-md ion-item-sliding { + background-color: #fff; +} + +.item-md ion-reorder { + font-size: 1.5em; + opacity: .3; +} + +.item-wp { + position: relative; + padding-right: 0; + padding-left: 16px; + font-size: 1.6rem; + font-weight: normal; + text-transform: none; + color: #000; + background-color: #fff; + box-shadow: none; +} + +.item-wp.activated { + background-color: #aaa; +} + +.item-wp[no-lines] { + border-width: 0; +} + +.item-wp h1 { + margin: 0 0 2px; + font-size: 2.4rem; + font-weight: normal; +} + +.item-wp h2 { + margin: 2px 0; + font-size: 1.6rem; + font-weight: normal; +} + +.item-wp h3, +.item-wp h4, +.item-wp h5, +.item-wp h6 { + margin: 2px 0; + font-size: 1.4rem; + font-weight: normal; + line-height: normal; +} + +.item-wp p { + overflow: inherit; + margin: 0 0 2px; + font-size: 1.4rem; + line-height: normal; + text-overflow: inherit; + color: #666; +} + +.item-wp.item-block .item-inner { + padding-right: 8px; + border-bottom: 1px solid transparent; +} + +.item-wp [item-left], +.item-wp [item-right] { + margin: 9px 8px 9px 0; +} + +.item-wp ion-icon[item-left], +.item-wp ion-icon[item-right] { + margin-top: 11px; + margin-bottom: 10px; + margin-left: 0; +} + +.item-wp .item-button { + padding: 0 .6em; + height: 25px; + font-size: 1.2rem; +} + +.item-wp .item-button[icon-only] ion-icon, +.item-wp .item-button[icon-only] { + padding: 0 1px; +} + +.item-wp[text-wrap] ion-label { + font-size: 1.4rem; + line-height: 1.5; +} + +.item-wp ion-icon[item-left] + .item-inner, +.item-wp ion-icon[item-left] + .item-input { + margin-left: 8px; +} + +.item-wp ion-avatar[item-left], +.item-wp ion-thumbnail[item-left] { + margin: 8px 16px 8px 0; +} + +.item-wp ion-avatar[item-right], +.item-wp ion-thumbnail[item-right] { + margin: 8px; +} + +.item-wp ion-avatar { + min-width: 40px; + min-height: 40px; +} + +.item-wp ion-avatar ion-img, +.item-wp ion-avatar img { + overflow: hidden; + width: 40px; + height: 40px; + border-radius: 50%; +} + +.item-wp ion-thumbnail { + min-width: 80px; + min-height: 80px; +} + +.item-wp ion-thumbnail ion-img, +.item-wp ion-thumbnail img { + width: 80px; + height: 80px; +} + +.item-divider-wp { + padding-left: 16px; + border-bottom: 1px solid transparent; + font-size: 2rem; + color: #000; + background-color: #fff; +} + +.item-wp .text-wp-primary { + color: #387ef5; +} + +.item-wp-primary, +.item-divider-wp-primary { + color: #fff; + background-color: #387ef5; +} + +.item-wp-primary p, +.item-divider-wp-primary p { + color: #fff; +} + +.item-wp-primary.activated, +.item-divider-wp-primary.activated { + background-color: #3474e1; +} + +.item-wp .text-wp-secondary { + color: #32db64; +} + +.item-wp-secondary, +.item-divider-wp-secondary { + color: #fff; + background-color: #32db64; +} + +.item-wp-secondary p, +.item-divider-wp-secondary p { + color: #fff; +} + +.item-wp-secondary.activated, +.item-divider-wp-secondary.activated { + background-color: #2ec95c; +} + +.item-wp .text-wp-danger { + color: #f53d3d; +} + +.item-wp-danger, +.item-divider-wp-danger { + color: #fff; + background-color: #f53d3d; +} + +.item-wp-danger p, +.item-divider-wp-danger p { + color: #fff; +} + +.item-wp-danger.activated, +.item-divider-wp-danger.activated { + background-color: #e13838; +} + +.item-wp .text-wp-light { + color: #f4f4f4; +} + +.item-wp-light, +.item-divider-wp-light { + color: #000; + background-color: #f4f4f4; +} + +.item-wp-light p, +.item-divider-wp-light p { + color: #000; +} + +.item-wp-light.activated, +.item-divider-wp-light.activated { + background-color: #e0e0e0; +} + +.item-wp .text-wp-dark { + color: #222; +} + +.item-wp-dark, +.item-divider-wp-dark { + color: #fff; + background-color: #222; +} + +.item-wp-dark p, +.item-divider-wp-dark p { + color: #fff; +} + +.item-wp-dark.activated, +.item-divider-wp-dark.activated { + background-color: #343434; +} + +.list-wp ion-item-sliding { + background-color: #fff; +} + +ion-label { + display: block; + overflow: hidden; + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + margin: 0; + font-size: inherit; + text-overflow: ellipsis; + white-space: nowrap; +} + +.item-input ion-label { + -webkit-flex: initial; + -ms-flex: initial; + flex: initial; + max-width: 200px; + pointer-events: none; +} + +[text-wrap] ion-label { + white-space: normal; +} + +ion-label[fixed] { + -webkit-flex: 0 0 100px; + -ms-flex: 0 0 100px; + flex: 0 0 100px; + width: 100px; + min-width: 100px; + max-width: 200px; +} + +.item-label-stacked ion-label, +.item-label-floating ion-label { + -webkit-align-self: stretch; + -ms-flex-item-align: stretch; + -ms-grid-row-align: stretch; + align-self: stretch; + width: auto; + max-width: 100%; +} + +ion-label[stacked], +ion-label[floating] { + margin-bottom: 0; +} + +.item-label-stacked .input-wrapper, +.item-label-floating .input-wrapper { + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; +} + +.item-label-stacked ion-select, +.item-label-floating ion-select { + -webkit-align-self: stretch; + -ms-flex-item-align: stretch; + -ms-grid-row-align: stretch; + align-self: stretch; + max-width: 100%; +} + +.item-select ion-label[floating] { + -webkit-transform: translate3d(0, 0, 0) scale(0.8); + transform: translate3d(0, 0, 0) scale(0.8); +} + +.label-ios { + margin: 11px 8px 11px 0; +} + +.label-ios + ion-input .text-input, +.label-ios + ion-textarea .text-input, +.label-ios + .input + .cloned-input { + margin-left: 16px; + width: calc(100% - (16px / 2) - 16px); +} + +.label-ios[stacked] { + margin-bottom: 4px; + font-size: 1.2rem; +} + +.label-ios[floating] { + margin-bottom: 0; + -webkit-transform: translate3d(0, 27px, 0); + transform: translate3d(0, 27px, 0); + -webkit-transform-origin: left top; + transform-origin: left top; + transition: -webkit-transform 150ms ease-in-out; + transition: transform 150ms ease-in-out; + transition: transform 150ms ease-in-out, -webkit-transform 150ms ease-in-out; +} + +.input-has-focus .label-ios[floating], +.input-has-value .label-ios[floating] { + -webkit-transform: translate3d(0, 0, 0) scale(0.8); + transform: translate3d(0, 0, 0) scale(0.8); +} + +.item-ios.item-label-stacked [item-right], +.item-ios.item-label-floating [item-right] { + margin-top: 6px; + margin-bottom: 6px; +} + +.label-ios-primary, +.item-input .label-ios-primary, +.item-select .label-ios-primary, +.item-datetime .label-ios-primary { + color: #387ef5; +} + +.label-ios-secondary, +.item-input .label-ios-secondary, +.item-select .label-ios-secondary, +.item-datetime .label-ios-secondary { + color: #32db64; +} + +.label-ios-danger, +.item-input .label-ios-danger, +.item-select .label-ios-danger, +.item-datetime .label-ios-danger { + color: #f53d3d; +} + +.label-ios-light, +.item-input .label-ios-light, +.item-select .label-ios-light, +.item-datetime .label-ios-light { + color: #f4f4f4; +} + +.label-ios-dark, +.item-input .label-ios-dark, +.item-select .label-ios-dark, +.item-datetime .label-ios-dark { + color: #222; +} + +.label-md { + margin: 13px 8px 13px 0; +} + +[text-wrap] .label-md { + font-size: 1.4rem; + line-height: 1.5; +} + +.item-input .label-md, +.item-select .label-md, +.item-datetime .label-md { + color: #999; +} + +.label-md[stacked] { + font-size: 1.2rem; +} + +.label-md[floating] { + -webkit-transform: translate3d(0, 27px, 0); + transform: translate3d(0, 27px, 0); + -webkit-transform-origin: left top; + transform-origin: left top; + transition: -webkit-transform 150ms ease-in-out; + transition: transform 150ms ease-in-out; + transition: transform 150ms ease-in-out, -webkit-transform 150ms ease-in-out; +} + +.label-md[stacked], +.label-md[floating] { + margin-bottom: 0; + margin-left: 0; +} + +.input-has-focus .label-md[stacked], +.input-has-focus .label-md[floating] { + color: #387ef5; +} + +.input-has-focus .label-md[floating], +.input-has-value .label-md[floating] { + -webkit-transform: translate3d(0, 0, 0) scale(0.8); + transform: translate3d(0, 0, 0) scale(0.8); +} + +.item-md.item-label-stacked [item-right], +.item-md.item-label-floating [item-right] { + margin-top: 7px; + margin-bottom: 7px; +} + +.label-md-primary, +.item-input .label-md-primary, +.item-select .label-md-primary, +.item-datetime .label-md-primary { + color: #387ef5; +} + +.label-md-secondary, +.item-input .label-md-secondary, +.item-select .label-md-secondary, +.item-datetime .label-md-secondary { + color: #32db64; +} + +.label-md-danger, +.item-input .label-md-danger, +.item-select .label-md-danger, +.item-datetime .label-md-danger { + color: #f53d3d; +} + +.label-md-light, +.item-input .label-md-light, +.item-select .label-md-light, +.item-datetime .label-md-light { + color: #f4f4f4; +} + +.label-md-dark, +.item-input .label-md-dark, +.item-select .label-md-dark, +.item-datetime .label-md-dark { + color: #222; +} + +.label-wp { + margin: 13px 8px 13px 0; +} + +.item-input .label-wp, +.item-select .label-wp, +.item-datetime .label-wp { + color: #999; +} + +.label-wp[stacked] { + font-size: 1.2rem; +} + +.label-wp[floating] { + -webkit-transform: translate3d(8px, 34px, 0); + transform: translate3d(8px, 34px, 0); + -webkit-transform-origin: left top; + transform-origin: left top; +} + +.label-wp[stacked], +.label-wp[floating] { + margin-bottom: 0; + margin-left: 0; +} + +.input-has-focus .label-wp[stacked], +.input-has-focus .label-wp[floating] { + color: #387ef5; +} + +.input-has-focus .label-wp[floating], +.input-has-value .label-wp[floating] { + -webkit-transform: translate3d(0, 0, 0) scale(0.8); + transform: translate3d(0, 0, 0) scale(0.8); +} + +.item-wp.item-label-stacked [item-right], +.item-wp.item-label-floating [item-right] { + margin-top: 13px; + margin-bottom: 13px; +} + +.label-wp-primary, +.item-input .label-wp-primary, +.item-select .label-wp-primary, +.item-datetime .label-wp-primary { + color: #387ef5; +} + +.label-wp-secondary, +.item-input .label-wp-secondary, +.item-select .label-wp-secondary, +.item-datetime .label-wp-secondary { + color: #32db64; +} + +.label-wp-danger, +.item-input .label-wp-danger, +.item-select .label-wp-danger, +.item-datetime .label-wp-danger { + color: #f53d3d; +} + +.label-wp-light, +.item-input .label-wp-light, +.item-select .label-wp-light, +.item-datetime .label-wp-light { + color: #f4f4f4; +} + +.label-wp-dark, +.item-input .label-wp-dark, +.item-select .label-wp-dark, +.item-datetime .label-wp-dark { + color: #222; +} + +ion-list-header { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + overflow: hidden; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + -webkit-justify-content: space-between; + -ms-flex-pack: justify; + justify-content: space-between; + margin: 0; + padding: 0; + width: 100%; + min-height: 4rem; +} + +ion-list { + display: block; + margin: 0; + padding: 0; + list-style-type: none; +} + +ion-list[inset] { + overflow: hidden; + -webkit-transform: translateZ(0); + transform: translateZ(0); +} + +.list-ios { + margin: -1px 0 32px 0; +} + +.list-ios > .item-block:first-child { + border-top: 0.55px solid #c8c7cc; +} + +.list-ios > .item-block:last-child, +.list-ios > .item-wrapper:last-child .item-block { + border-bottom: 0.55px solid #c8c7cc; +} + +.list-ios > .item-block:last-child .item-inner, +.list-ios > .item-wrapper:last-child .item-block .item-inner { + border-bottom: 0; +} + +.list-ios .item-block .item-inner { + border-bottom: 0.55px solid #c8c7cc; +} + +.list-ios .item[no-lines], +.list-ios .item[no-lines] .item-inner { + border-width: 0; +} + +.list-ios ion-item-options { + border-bottom: 0.55px solid #c8c7cc; +} + +.list-ios ion-item-options .button { + display: -webkit-inline-flex; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + margin: 0; + height: 100%; + min-height: 100%; + border: 0; + border-radius: 0; + box-sizing: border-box; +} + +.list-ios ion-item-options .button::before { + margin: 0 auto; +} + +.list-ios:not([inset]) + .list-ios:not([inset]) ion-list-header { + margin-top: -10px; + padding-top: 0; +} + +.list-ios[inset] { + margin: 16px 16px 16px 16px; + border-radius: 4px; +} + +.list-ios[inset] ion-list-header { + background-color: #fff; +} + +.list-ios[inset] .item { + border-bottom: 1px solid #c8c7cc; +} + +.list-ios[inset] .item-inner { + border-bottom: 0; +} + +.list-ios[inset] > .item:first-child, +.list-ios[inset] > .item-wrapper:first-child .item { + border-top: 0; +} + +.list-ios[inset] > .item:last-child, +.list-ios[inset] > .item-wrapper:last-child .item { + border-bottom: 0; +} + +.list-ios[inset] + ion-list[inset] { + margin-top: 0; +} + +.list-ios[no-lines] ion-list-header, +.list-ios[no-lines] ion-item-options, +.list-ios[no-lines] .item, +.list-ios[no-lines] .item .item-inner { + border-width: 0; +} + +.list-header-ios { + position: relative; + padding-left: 16px; + border-bottom: 0.55px solid #c8c7cc; + font-size: 1.2rem; + font-weight: 500; + letter-spacing: 0.1rem; + text-transform: uppercase; + color: #333; + background: transparent; +} + +.list-header-ios-primary { + color: #fff; + background-color: #387ef5; +} + +.list-header-ios-secondary { + color: #fff; + background-color: #32db64; +} + +.list-header-ios-danger { + color: #fff; + background-color: #f53d3d; +} + +.list-header-ios-light { + color: #000; + background-color: #f4f4f4; +} + +.list-header-ios-dark { + color: #fff; + background-color: #222; +} + +.list-md { + margin: -1px 0 16px 0; +} + +.list-md .item-block .item-inner { + border-bottom: 1px solid #dedede; +} + +.list-md > .item-block:last-child ion-label, +.list-md > .item-block:last-child .item-inner, +.list-md > .item-wrapper:last-child ion-label, +.list-md > .item-wrapper:last-child .item-inner { + border-bottom: 0; +} + +.list-md > ion-input:last-child::after { + left: 0; +} + +.list-md ion-item-options { + border-bottom: 1px solid #dedede; +} + +.list-md ion-item-options .button { + display: -webkit-inline-flex; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + margin: 1px 0; + height: calc(100% - 2px); + border: 0; + border-radius: 0; + box-shadow: none; + box-sizing: border-box; +} + +.list-md ion-item-options .button::before { + margin: 0 auto; +} + +.list-md .item[no-lines], +.list-md .item[no-lines] .item-inner { + border-width: 0; +} + +.list-md + ion-list ion-list-header { + margin-top: -16px; +} + +.list-md[inset] { + margin: 16px 16px 16px 16px; + border-radius: 2px; +} + +.list-md[inset] .item:first-child { + border-top-width: 0; + border-top-left-radius: 2px; + border-top-right-radius: 2px; +} + +.list-md[inset] .item:last-child { + border-bottom-width: 0; + border-bottom-left-radius: 2px; + border-bottom-right-radius: 2px; +} + +.list-md[inset] .item-input { + padding-right: 0; + padding-left: 0; +} + +.list-md[inset] + ion-list[inset] { + margin-top: 0; +} + +.list-md[inset] ion-list-header { + background-color: #fff; +} + +.list-md[no-lines] .item-block, +.list-md[no-lines] ion-item-options, +.list-md[no-lines] .item .item-inner { + border-width: 0; +} + +.list-header-md { + margin-bottom: 13px; + padding-left: 16px; + min-height: 4.5rem; + border-top: 1px solid #dedede; + font-size: 1.4rem; + color: #757575; +} + +.list-header-md-primary { + color: #fff; + background-color: #387ef5; +} + +.list-header-md-secondary { + color: #fff; + background-color: #32db64; +} + +.list-header-md-danger { + color: #fff; + background-color: #f53d3d; +} + +.list-header-md-light { + color: #000; + background-color: #f4f4f4; +} + +.list-header-md-dark { + color: #fff; + background-color: #222; +} + +.list-wp { + margin: 0 0 16px 0; +} + +.list-wp .item-block .item-inner { + border-bottom: 1px solid transparent; +} + +.list-wp > .item-block:first-child, +.list-wp > .item-wrapper:first-child .item-block { + border-top: 1px solid transparent; +} + +.list-wp > .item-block:last-child, +.list-wp > .item-wrapper:last-child .item-block { + border-bottom: 1px solid transparent; +} + +.list-wp > .item-block:last-child ion-label, +.list-wp > .item-block:last-child .item-inner, +.list-wp > .item-wrapper:last-child ion-label, +.list-wp > .item-wrapper:last-child .item-inner { + border-bottom: 0; +} + +.list-wp > ion-input:last-child::after { + left: 0; +} + +.list-wp ion-item-options .button { + display: -webkit-inline-flex; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + margin: 1px 0; + height: calc(100% - 2px); + border: 0; + border-radius: 0; + box-shadow: none; + box-sizing: border-box; +} + +.list-wp ion-item-options .button::before { + margin: 0 auto; +} + +.list-wp .item[no-lines], +.list-wp .item[no-lines] .item-inner { + border-width: 0; +} + +.list-wp + ion-list ion-list-header { + margin-top: -16px; + padding-top: 0; +} + +.list-wp[inset] { + margin: 16px 16px 16px 16px; + border-radius: 2px; +} + +.list-wp[inset] .item:first-child { + border-top-width: 0; + border-top-left-radius: 2px; + border-top-right-radius: 2px; +} + +.list-wp[inset] .item:last-child { + border-bottom-width: 0; + border-bottom-left-radius: 2px; + border-bottom-right-radius: 2px; +} + +.list-wp[inset] .item-input { + padding-right: 0; + padding-left: 0; +} + +.list-wp[inset] + ion-list[inset] { + margin-top: 0; +} + +.list-wp[inset] ion-list-header { + background-color: #fff; +} + +.list-wp[no-lines] .item, +.list-wp[no-lines] .item .item-inner { + border-width: 0; +} + +.list-header-wp { + padding-left: 16px; + border-bottom: 1px solid transparent; + font-size: 2rem; + color: #000; +} + +.list-header-wp-primary { + color: #fff; + background-color: #387ef5; +} + +.list-header-wp-secondary { + color: #fff; + background-color: #32db64; +} + +.list-header-wp-danger { + color: #fff; + background-color: #f53d3d; +} + +.list-header-wp-light { + color: #000; + background-color: #f4f4f4; +} + +.list-header-wp-dark { + color: #fff; + background-color: #222; +} + +ion-loading { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1000; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; + contain: strict; +} + +.loading-wrapper { + z-index: 10; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + opacity: 0; +} + +.loading-ios .loading-wrapper { + padding: 24px 34px; + max-width: 270px; + max-height: 90%; + border-radius: 8px; + color: #000; + background: #f8f8f8; +} + +.loading-ios .loading-content { + font-weight: bold; +} + +.loading-ios .loading-spinner + .loading-content { + margin-left: 16px; +} + +.loading-ios .spinner-ios line, +.loading-ios .spinner-ios-small line { + stroke: #69717d; +} + +.loading-ios .spinner-bubbles circle { + fill: #69717d; +} + +.loading-ios .spinner-circles circle { + fill: #69717d; +} + +.loading-ios .spinner-crescent circle { + stroke: #69717d; +} + +.loading-ios .spinner-dots circle { + fill: #69717d; +} + +.loading-md .loading-wrapper { + padding: 24px; + max-width: 280px; + max-height: 90%; + border-radius: 2px; + color: rgba(0, 0, 0, 0.5); + background: #fafafa; + box-shadow: 0 16px 20px rgba(0, 0, 0, 0.4); +} + +.loading-md .loading-spinner + .loading-content { + margin-left: 16px; +} + +.loading-md .spinner-ios line, +.loading-md .spinner-ios-small line { + stroke: #387ef5; +} + +.loading-md .spinner-bubbles circle { + fill: #387ef5; +} + +.loading-md .spinner-circles circle { + fill: #387ef5; +} + +.loading-md .spinner-crescent circle { + stroke: #387ef5; +} + +.loading-md .spinner-dots circle { + fill: #387ef5; +} + +.loading-wp .loading-wrapper { + padding: 20px; + max-width: 280px; + max-height: 90%; + border-radius: 2px; + color: #fff; + background: #000; +} + +.loading-wp .loading-spinner + .loading-content { + margin-left: 16px; +} + +.loading-wp .spinner-ios line, +.loading-wp .spinner-ios-small line { + stroke: #fff; +} + +.loading-wp .spinner-bubbles circle { + fill: #fff; +} + +.loading-wp .spinner-circles circle { + fill: #fff; +} + +.loading-wp .spinner-crescent circle { + stroke: #fff; +} + +.loading-wp .spinner-dots circle { + fill: #fff; +} + +ion-menu { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + display: none; + contain: strict; +} + +ion-menu.show-menu { + display: block; +} + +.menu-inner { + position: absolute; + top: 0; + right: auto; + bottom: 0; + left: 0; + display: block; + width: 304px; + height: 100%; + -webkit-transform: translate3d(-9999px, 0, 0); + transform: translate3d(-9999px, 0, 0); + contain: strict; +} + +.menu-inner > ion-header, +.menu-inner > ion-content, +.menu-inner > ion-footer { + position: absolute; +} + +ion-menu[side=right] > .menu-inner { + right: 0; + left: auto; +} + +ion-menu ion-backdrop { + z-index: -1; + display: none; + opacity: .01; +} + +.menu-content { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); +} + +.menu-content-open { + cursor: pointer; + -ms-touch-action: manipulation; + touch-action: manipulation; +} + +.menu-content-open ion-pane, +.menu-content-open ion-content, +.menu-content-open .toolbar { + pointer-events: none; +} + +@media (max-width: 340px) { + .menu-inner { + width: 264px; + } +} + +ion-menu[type=reveal] { + z-index: 0; +} + +ion-menu[type=reveal].show-menu .menu-inner { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); +} + +ion-menu[type=overlay] { + z-index: 80; +} + +ion-menu[type=overlay] .show-backdrop { + display: block; +} + +.ios .menu-inner { + background: #fff; +} + +.ios .menu-content-reveal { + box-shadow: 0 0 10px rgba(0, 0, 0, 0.25); +} + +.ios .menu-content-push { + box-shadow: 0 0 10px rgba(0, 0, 0, 0.25); +} + +.ios ion-menu[type=overlay] .menu-inner { + box-shadow: 0 0 10px rgba(0, 0, 0, 0.25); +} + +.md .menu-inner { + background: #fff; +} + +.md .menu-content-reveal { + box-shadow: 0 0 10px rgba(0, 0, 0, 0.25); +} + +.md .menu-content-push { + box-shadow: 0 0 10px rgba(0, 0, 0, 0.25); +} + +.md ion-menu[type=overlay] .menu-inner { + box-shadow: 0 0 10px rgba(0, 0, 0, 0.25); +} + +.wp .menu-inner { + background: #f2f2f2; +} + +ion-modal { + position: absolute; + top: 0; + left: 0; + display: block; + width: 100%; + height: 100%; + contain: strict; +} + +@media not all and (min-width: 768px) and (min-height: 600px) { + ion-modal ion-backdrop { + visibility: hidden; + } +} + +.modal-wrapper { + z-index: 10; + height: 100%; + contain: strict; +} + +@media only screen and (min-width: 768px) and (min-height: 600px) { + .modal-wrapper { + position: absolute; + top: calc(50% - (500px/2)); + left: calc(50% - (600px/2)); + width: 600px; + height: 500px; + } +} + +@media only screen and (min-width: 768px) and (min-height: 768px) { + .modal-wrapper { + position: absolute; + top: calc(50% - (600px/2)); + left: calc(50% - (600px/2)); + width: 600px; + height: 600px; + } +} + +.ios .modal-wrapper { + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); +} + +@media only screen and (min-width: 768px) and (min-height: 600px) { + .ios .modal-wrapper { + overflow: hidden; + border-radius: 10px; + } +} + +.md .modal-wrapper { + opacity: .01; + -webkit-transform: translate3d(0, 40px, 0); + transform: translate3d(0, 40px, 0); +} + +@media only screen and (min-width: 768px) and (min-height: 600px) { + .md .modal-wrapper { + overflow: hidden; + border-radius: 2px; + box-shadow: 0 28px 48px rgba(0, 0, 0, 0.4); + } +} + +.wp .modal-wrapper { + opacity: .01; + -webkit-transform: translate3d(0, 40px, 0); + transform: translate3d(0, 40px, 0); +} + +.note-ios { + color: #aeacb4; +} + +.note-ios-primary { + color: #387ef5; +} + +.note-ios-secondary { + color: #32db64; +} + +.note-ios-danger { + color: #f53d3d; +} + +.note-ios-light { + color: #f4f4f4; +} + +.note-ios-dark { + color: #222; +} + +.note-md { + color: #c5c5c5; +} + +.note-md-primary { + color: #387ef5; +} + +.note-md-secondary { + color: #32db64; +} + +.note-md-danger { + color: #f53d3d; +} + +.note-md-light { + color: #f4f4f4; +} + +.note-md-dark { + color: #222; +} + +.note-wp { + color: rgba(0, 0, 0, 0.5); +} + +.note-wp-primary { + color: #387ef5; +} + +.note-wp-secondary { + color: #32db64; +} + +.note-wp-danger { + color: #f53d3d; +} + +.note-wp-light { + color: #f4f4f4; +} + +.note-wp-dark { + color: #222; +} + +ion-picker-cmp { + position: absolute; + top: 0; + left: 0; + z-index: 1000; + display: block; + width: 100%; + height: 100%; + contain: strict; +} + +.picker-toolbar { + z-index: 1; + width: 100%; + contain: strict; +} + +.picker-wrapper { + position: absolute; + right: 0; + bottom: 0; + left: 0; + z-index: 10; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + overflow: hidden; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; + margin: auto; + width: 100%; + max-width: 500px; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + contain: strict; +} + +.picker-columns { + position: relative; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + overflow: hidden; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; + contain: strict; +} + +.picker-col { + position: relative; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; + height: 100%; + box-sizing: content-box; + contain: content; +} + +.picker-opts { + position: relative; + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + max-width: 100%; +} + +.picker-prefix { + position: relative; + -webkit-flex: 2; + -ms-flex: 2; + flex: 2; + min-width: 45%; + max-width: 50%; + text-align: right; + white-space: nowrap; +} + +.picker-suffix { + position: relative; + -webkit-flex: 2; + -ms-flex: 2; + flex: 2; + min-width: 45%; + max-width: 50%; + text-align: left; + white-space: nowrap; +} + +.picker-opt { + position: absolute; + top: 0; + left: 0; + display: block; + overflow: hidden; + width: 100%; + text-align: center; + text-overflow: ellipsis; + white-space: nowrap; + will-change: transform; + contain: strict; +} + +.picker-opt.picker-opt-disabled { + pointer-events: none; +} + +.picker-opt-disabled { + opacity: 0; +} + +.picker-opts-left { + -webkit-justify-content: flex-start; + -ms-flex-pack: start; + justify-content: flex-start; +} + +.picker-opts-right { + -webkit-justify-content: flex-end; + -ms-flex-pack: end; + justify-content: flex-end; +} + +.picker-above-highlight, +.picker-below-highlight { + display: none; + pointer-events: none; +} + +.picker-ios .picker-wrapper { + height: 260px; + border-top: 1px solid #c8c7cc; + background: #fff; +} + +.picker-ios .picker-toolbar { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + height: 44px; + border-bottom: 0.55px solid #c8c7cc; + background: #fff; +} + +.picker-ios .picker-toolbar-button { + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + text-align: right; +} + +.picker-ios .picker-toolbar-button:last-child .picker-button { + font-weight: 600; +} + +.picker-ios .picker-toolbar-cancel { + font-weight: normal; + text-align: left; +} + +.picker-ios .picker-button, +.picker-ios .picker-button.activated { + margin: 0; + height: 44px; + color: #387ef5; + background: transparent; +} + +.picker-columns { + height: 215px; + -webkit-perspective: 1000px; + perspective: 1000px; +} + +.picker-ios .picker-col { + padding: 0 4px; + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; +} + +.picker-ios .picker-prefix, +.picker-ios .picker-suffix, +.picker-ios .picker-opts { + top: 77px; + font-size: 20px; + line-height: 42px; + color: #000; + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; + pointer-events: none; +} + +.picker-ios .picker-opt { + margin: 0; + padding: 0; + height: 4.6rem; + font-size: 20px; + line-height: 42px; + color: #000; + background: transparent; + -webkit-transform-origin: center center; + transform-origin: center center; + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; + transition-timing-function: ease-out; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + pointer-events: auto; +} + +.picker-ios .picker-above-highlight { + position: absolute; + top: 0; + left: 0; + z-index: 10; + display: block; + width: 100%; + height: 81px; + border-bottom: 1px solid #c8c7cc; + background: linear-gradient(to bottom, white 20%, rgba(255, 255, 255, 0.7) 100%); + -webkit-transform: translate3d(0, 0, 90px); + transform: translate3d(0, 0, 90px); +} + +.picker-ios .picker-below-highlight { + position: absolute; + top: 115px; + left: 0; + z-index: 11; + display: block; + width: 100%; + height: 119px; + border-top: 1px solid #c8c7cc; + background: linear-gradient(to top, white 30%, rgba(255, 255, 255, 0.7) 100%); + -webkit-transform: translate3d(0, 0, 90px); + transform: translate3d(0, 0, 90px); +} + +.picker-md .picker-wrapper { + height: 260px; + border-top: 0.55px solid #dedede; + background: #fff; +} + +.picker-md .picker-toolbar { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-justify-content: flex-end; + -ms-flex-pack: end; + justify-content: flex-end; + height: 44px; + background: #fff; +} + +.picker-md .picker-button, +.picker-md .picker-button.activated { + margin: 0; + height: 44px; + color: #387ef5; + background: transparent; + box-shadow: none; +} + +.picker-md .picker-columns { + height: 216px; + -webkit-perspective: 1800px; + perspective: 1800px; +} + +.picker-md .picker-col { + padding: 0 8px; + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; +} + +.picker-md .picker-prefix, +.picker-md .picker-suffix, +.picker-md .picker-opts { + top: 77px; + font-size: 22px; + line-height: 42px; + color: #000; + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; + pointer-events: none; +} + +.picker-md .picker-opt { + margin: 0; + padding: 0; + height: 4.3rem; + font-size: 22px; + line-height: 42px; + color: #000; + background: transparent; + transition-timing-function: ease-out; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + pointer-events: auto; +} + +.picker-md .picker-prefix, +.picker-md .picker-suffix, +.picker-md .picker-opt.picker-opt-selected { + color: #387ef5; +} + +.picker-md .picker-above-highlight { + position: absolute; + top: 0; + left: 0; + z-index: 10; + width: 100%; + height: 81px; + border-bottom: 1px solid #dedede; + background: linear-gradient(to bottom, white 20%, rgba(255, 255, 255, 0.7) 100%); + -webkit-transform: translate3d(0, 0, 90px); + transform: translate3d(0, 0, 90px); +} + +.picker-md .picker-below-highlight { + position: absolute; + top: 115px; + left: 0; + z-index: 11; + width: 100%; + height: 119px; + border-top: 1px solid #dedede; + background: linear-gradient(to top, white 30%, rgba(255, 255, 255, 0.7) 100%); + -webkit-transform: translate3d(0, 0, 90px); + transform: translate3d(0, 0, 90px); +} + +.picker-wp .picker-wrapper { + height: 260px; + border-top: 0.55px solid transparent; + background: #fff; +} + +.picker-wp .picker-toolbar { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-justify-content: flex-end; + -ms-flex-pack: end; + justify-content: flex-end; + height: 44px; + border-width: 0.55px; + background: #fff; +} + +.picker-wp .picker-toolbar-button { + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + text-align: right; +} + +.picker-wp .picker-toolbar-cancel { + font-weight: normal; + text-align: left; +} + +.picker-wp .picker-button, +.picker-wp .picker-button.activated { + margin: 0; + height: 44px; + color: #387ef5; + background: transparent; + box-shadow: none; +} + +.picker-wp .picker-columns { + height: 216px; + -webkit-perspective: 1800px; + perspective: 1800px; +} + +.picker-wp .picker-col { + padding: 0 4px; + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; +} + +.picker-wp .picker-prefix, +.picker-wp .picker-suffix, +.picker-wp .picker-opts { + top: 77px; + font-size: 22px; + line-height: 42px; + color: #000; + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; + pointer-events: none; +} + +.picker-wp .picker-opt { + margin: 0; + padding: 0; + height: 4.2rem; + font-size: 22px; + line-height: 42px; + color: #000; + background: transparent; + transition-timing-function: ease-out; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + pointer-events: auto; +} + +.picker-wp .picker-prefix, +.picker-wp .picker-suffix, +.picker-wp .picker-opt-selected { + color: #387ef5; +} + +.picker-wp .picker-above-highlight { + position: absolute; + top: 0; + left: 0; + z-index: 10; + width: 100%; + height: 81px; + border-bottom: 1px solid transparent; + background: linear-gradient(to bottom, white 20%, rgba(255, 255, 255, 0.7) 100%); + -webkit-transform: translate3d(0, 0, 90px); + transform: translate3d(0, 0, 90px); +} + +.picker-wp .picker-below-highlight { + position: absolute; + top: 115px; + left: 0; + z-index: 11; + width: 100%; + height: 119px; + border-top: 1px solid transparent; + background: linear-gradient(to top, white 30%, rgba(255, 255, 255, 0.7) 100%); + -webkit-transform: translate3d(0, 0, 90px); + transform: translate3d(0, 0, 90px); +} + +ion-popover { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1000; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; +} + +.popover-wrapper { + z-index: 10; + opacity: 0; +} + +.popover-content { + position: absolute; + z-index: 10; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + overflow: auto; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; +} + +.popover-content ion-content, +.popover-content .scroll-content { + contain: none; +} + +.popover-content .scroll-content { + position: relative; +} + +.popover-ios .popover-content { + width: 200px; + min-width: 0; + min-height: 0; + max-height: 90%; + border-radius: 10px; + color: #000; + background: #fff; +} + +.popover-ios .popover-arrow { + position: absolute; + display: block; + overflow: hidden; + width: 20px; + height: 10px; +} + +.popover-ios .popover-arrow::after { + position: absolute; + top: 3px; + left: 3px; + z-index: 10; + width: 14px; + height: 14px; + border-radius: 3px; + background-color: #fff; + content: ""; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); +} + +.popover-ios.popover-bottom .popover-arrow { + top: auto; + bottom: -10px; +} + +.popover-ios.popover-bottom .popover-arrow::after { + top: -6px; +} + +.popover-md .popover-content { + width: 250px; + min-width: 0; + min-height: 0; + max-height: 90%; + border-radius: 2px; + color: #000; + background: #fff; + box-shadow: 0 3px 12px 2px rgba(0, 0, 0, 0.3); + -webkit-transform-origin: top left; + transform-origin: top left; +} + +.popover-md .popover-viewport { + opacity: 0; + transition-delay: 100ms; +} + +.popover-wp .popover-content { + width: 200px; + min-width: 0; + min-height: 0; + max-height: 90%; + border: 2px solid #ccc; + border-radius: 0; + color: #000; + background: #fff; + -webkit-transform-origin: top left; + transform-origin: top left; +} + +.popover-wp .popover-viewport { + opacity: 0; + transition-delay: 100ms; +} + +.radio-ios { + position: relative; + display: inline-block; +} + +.radio-ios .radio-icon { + position: relative; + display: block; + width: 16px; + height: 21px; +} + +.radio-ios .radio-checked .radio-inner { + position: absolute; + top: 4px; + left: 7px; + width: 5px; + height: 12px; + border-width: 2px; + border-top-width: 0; + border-left-width: 0; + border-style: solid; + border-color: #387ef5; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); +} + +.radio-ios.radio-disabled, +.item-ios.item-radio-disabled ion-label { + opacity: 0.3; + pointer-events: none; +} + +.item-ios .radio-ios { + position: static; + display: block; + margin: 8px 11px 8px 8px; +} + +.item-ios .radio-ios[item-left] { + margin: 8px 21px 8px 3px; +} + +.item-radio.item-ios ion-label { + margin-left: 0; +} + +.item-radio-checked.item-ios ion-label { + color: #387ef5; +} + +.item-radio-ios-primary.item-radio-checked ion-label { + color: #387ef5; +} + +.radio-ios-primary .radio-checked { + color: #387ef5; +} + +.radio-ios-primary .radio-checked .radio-inner { + border-color: #387ef5; +} + +.item-radio-ios-secondary.item-radio-checked ion-label { + color: #32db64; +} + +.radio-ios-secondary .radio-checked { + color: #32db64; +} + +.radio-ios-secondary .radio-checked .radio-inner { + border-color: #32db64; +} + +.item-radio-ios-danger.item-radio-checked ion-label { + color: #f53d3d; +} + +.radio-ios-danger .radio-checked { + color: #f53d3d; +} + +.radio-ios-danger .radio-checked .radio-inner { + border-color: #f53d3d; +} + +.item-radio-ios-light.item-radio-checked ion-label { + color: #f4f4f4; +} + +.radio-ios-light .radio-checked { + color: #f4f4f4; +} + +.radio-ios-light .radio-checked .radio-inner { + border-color: #f4f4f4; +} + +.item-radio-ios-dark.item-radio-checked ion-label { + color: #222; +} + +.radio-ios-dark .radio-checked { + color: #222; +} + +.radio-ios-dark .radio-checked .radio-inner { + border-color: #222; +} + +.radio-md { + position: relative; + display: inline-block; +} + +.radio-md .radio-icon { + position: relative; + top: 0; + left: 0; + display: block; + margin: 0; + width: 16px; + height: 16px; + border-width: 2px; + border-style: solid; + border-radius: 50%; + border-color: #787878; +} + +.radio-md .radio-inner { + position: absolute; + top: 2px; + left: 2px; + width: 8px; + height: 8px; + border-radius: 50%; + background-color: #387ef5; + -webkit-transform: scale3d(0, 0, 0); + transform: scale3d(0, 0, 0); + transition: -webkit-transform 280ms cubic-bezier(0.4, 0, 0.2, 1); + transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1); + transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 280ms cubic-bezier(0.4, 0, 0.2, 1); +} + +.radio-md .radio-checked { + border-color: #387ef5; +} + +.radio-md .radio-checked .radio-inner { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); +} + +.radio-md.radio-disabled, +.item-md.item-radio-disabled ion-label { + opacity: 0.3; + pointer-events: none; +} + +.item-md .radio-md { + position: static; + display: block; + margin: 9px 10px 9px 0; +} + +.item-md .radio-md[item-left] { + margin: 11px 36px 10px 4px; +} + +.item-radio.item-md ion-label { + margin-left: 0; +} + +.item-radio-checked.item-md ion-label { + color: #387ef5; +} + +.item-radio-md-primary.item-radio-checked ion-label { + color: #387ef5; +} + +.radio-md-primary .radio-checked { + border-color: #387ef5; +} + +.radio-md-primary .radio-inner { + background-color: #387ef5; +} + +.item-radio-md-secondary.item-radio-checked ion-label { + color: #32db64; +} + +.radio-md-secondary .radio-checked { + border-color: #32db64; +} + +.radio-md-secondary .radio-inner { + background-color: #32db64; +} + +.item-radio-md-danger.item-radio-checked ion-label { + color: #f53d3d; +} + +.radio-md-danger .radio-checked { + border-color: #f53d3d; +} + +.radio-md-danger .radio-inner { + background-color: #f53d3d; +} + +.item-radio-md-light.item-radio-checked ion-label { + color: #f4f4f4; +} + +.radio-md-light .radio-checked { + border-color: #f4f4f4; +} + +.radio-md-light .radio-inner { + background-color: #f4f4f4; +} + +.item-radio-md-dark.item-radio-checked ion-label { + color: #222; +} + +.radio-md-dark .radio-checked { + border-color: #222; +} + +.radio-md-dark .radio-inner { + background-color: #222; +} + +.radio-wp { + position: relative; + display: inline-block; +} + +.radio-wp .radio-icon { + position: relative; + top: 0; + left: 0; + display: block; + margin: 0; + width: 16px; + height: 16px; + border-width: 2px; + border-style: solid; + border-radius: 50%; + border-color: #333; +} + +.radio-wp .radio-inner { + position: absolute; + top: 2px; + left: 2px; + display: none; + width: 8px; + height: 8px; + border-radius: 50%; + background-color: #333; +} + +.radio-wp .radio-checked { + border-color: #387ef5; +} + +.radio-wp .radio-checked .radio-inner { + display: block; +} + +.radio-wp.radio-disabled, +.item-wp.item-radio-disabled ion-label { + opacity: 0.3; + pointer-events: none; +} + +.item-wp .radio-wp { + position: static; + display: block; + -webkit-order: -1; + -ms-flex-order: -1; + order: -1; + margin: 9px 20px 9px 4px; +} + +.item-wp .radio-wp[item-right] { + -webkit-order: 0; + -ms-flex-order: 0; + order: 0; + margin: 11px 10px 10px 0; +} + +.item-radio.item-wp ion-label { + margin-left: 0; +} + +.radio-wp-primary .radio-checked { + border-color: #387ef5; +} + +.radio-wp-secondary .radio-checked { + border-color: #32db64; +} + +.radio-wp-danger .radio-checked { + border-color: #f53d3d; +} + +.radio-wp-light .radio-checked { + border-color: #f4f4f4; +} + +.radio-wp-dark .radio-checked { + border-color: #222; +} + +.item-range .item-inner { + overflow: visible; + width: 100%; +} + +.item-range .input-wrapper { + overflow: visible; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; + width: 100%; +} + +.item-range ion-range { + width: 100%; +} + +.item-range ion-range ion-label { + -webkit-align-self: center; + -ms-flex-item-align: center; + -ms-grid-row-align: center; + align-self: center; +} + +ion-range { + position: relative; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; +} + +ion-range ion-label { + -webkit-flex: initial; + -ms-flex: initial; + flex: initial; +} + +ion-range ion-icon { + min-height: 2.4rem; + font-size: 2.4rem; + line-height: 1; +} + +.range-slider { + position: relative; + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + cursor: pointer; +} + +.range-ios { + padding: 8px 16px; +} + +.range-ios [range-left] { + margin: 0 20px 0 0; +} + +.range-ios [range-right] { + margin: 0 0 0 20px; +} + +.range-ios.range-has-pin { + padding-top: 20px; +} + +.range-ios .range-slider { + height: 42px; +} + +.range-ios .range-bar { + position: absolute; + top: 21px; + left: 0; + width: 100%; + height: 1px; + border-radius: 1px; + background: #bdbdbd; + pointer-events: none; +} + +.range-ios.range-pressed .range-bar-active { + will-change: left, right; +} + +.range-ios.range-pressed .range-knob-handle { + will-change: left; +} + +.range-ios .range-bar-active { + bottom: 0; + width: auto; + background: #387ef5; +} + +.range-ios .range-knob-handle { + position: absolute; + top: 21px; + left: 0%; + margin-top: -21px; + margin-left: -21px; + width: 42px; + height: 42px; + text-align: center; +} + +.range-ios .range-knob { + position: absolute; + top: 7px; + left: 7px; + width: 28px; + height: 28px; + border-radius: 50%; + background: #fff; + box-shadow: 0 3px 1px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.13), 0 0 0 1px rgba(0, 0, 0, 0.02); + pointer-events: none; +} + +.range-ios .range-tick { + position: absolute; + top: 17.5px; + margin-left: -0.5px; + width: 1px; + height: 8px; + border-radius: 0; + background: #bdbdbd; + pointer-events: none; +} + +.range-ios .range-tick-active { + background: #387ef5; +} + +.range-ios .range-pin { + position: relative; + top: -20px; + display: inline-block; + padding: 8px; + min-width: 28px; + border-radius: 50px; + font-size: 12px; + text-align: center; + color: #000; + background: transparent; + -webkit-transform: translate3d(0, 28px, 0) scale(0.01); + transform: translate3d(0, 28px, 0) scale(0.01); + transition: -webkit-transform 120ms ease; + transition: transform 120ms ease; + transition: transform 120ms ease, -webkit-transform 120ms ease; +} + +.range-ios .range-knob-pressed .range-pin { + -webkit-transform: translate3d(0, 0, 0) scale(1); + transform: translate3d(0, 0, 0) scale(1); +} + +.range-ios.range-disabled { + opacity: .5; +} + +.range-ios-primary .range-bar-active, +.range-ios-primary .range-tick-active { + background: #387ef5; +} + +.range-ios-secondary .range-bar-active, +.range-ios-secondary .range-tick-active { + background: #32db64; +} + +.range-ios-danger .range-bar-active, +.range-ios-danger .range-tick-active { + background: #f53d3d; +} + +.range-ios-light .range-bar-active, +.range-ios-light .range-tick-active { + background: #f4f4f4; +} + +.range-ios-dark .range-bar-active, +.range-ios-dark .range-tick-active { + background: #222; +} + +.range-md { + padding: 8px 8px; +} + +.range-md [range-left] { + margin: 0 12px 0 0; +} + +.range-md [range-right] { + margin: 0 0 0 12px; +} + +.range-md.range-has-pin { + padding-top: 28px; +} + +.range-md .range-slider { + height: 42px; +} + +.range-md .range-bar { + position: absolute; + top: 21px; + left: 0; + width: 100%; + height: 2px; + background: #bdbdbd; + pointer-events: none; +} + +.range-md.range-pressed .range-bar-active { + will-change: left, right; +} + +.range-md.range-pressed .range-knob-handle { + will-change: left; +} + +.range-md .range-bar-active { + bottom: 0; + width: auto; + background: #387ef5; +} + +.range-md .range-knob-handle { + position: absolute; + top: 21px; + left: 0%; + margin-top: -21px; + margin-left: -21px; + width: 42px; + height: 42px; + text-align: center; +} + +.range-md .range-knob { + position: absolute; + top: 13px; + left: 12px; + z-index: 2; + width: 18px; + height: 18px; + border-radius: 50%; + background: #387ef5; + -webkit-transform: scale(0.67); + transform: scale(0.67); + transition-duration: 120ms; + transition-property: background-color, border, -webkit-transform; + transition-property: transform, background-color, border; + transition-property: transform, background-color, border, -webkit-transform; + transition-timing-function: ease; + pointer-events: none; +} + +.range-md .range-tick { + position: absolute; + top: 21px; + z-index: 1; + margin-left: -1px; + width: 2px; + height: 2px; + border-radius: 50%; + background: #000; + pointer-events: none; +} + +.range-md .range-tick-active { + background: #000; +} + +.range-md .range-pin { + position: relative; + top: -20px; + display: inline-block; + padding: 8px 0; + min-width: 28px; + height: 28px; + border-radius: 50%; + font-size: 12px; + text-align: center; + color: #fff; + background: #387ef5; + -webkit-transform: translate3d(0, 28px, 0) scale(0.01); + transform: translate3d(0, 28px, 0) scale(0.01); + transition: background-color 120ms ease, -webkit-transform 120ms ease; + transition: transform 120ms ease, background-color 120ms ease; + transition: transform 120ms ease, background-color 120ms ease, -webkit-transform 120ms ease; +} + +.range-md .range-pin::before { + position: absolute; + top: 3px; + left: 50%; + z-index: -1; + margin-left: -13px; + width: 26px; + height: 26px; + border-radius: 50% 50% 50% 0; + background: #387ef5; + content: ""; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + transition: background-color 120ms ease; +} + +.range-md .range-knob-pressed .range-pin { + -webkit-transform: translate3d(0, 0, 0) scale(1); + transform: translate3d(0, 0, 0) scale(1); +} + +.range-md:not(.range-has-pin) .range-knob-pressed .range-knob { + -webkit-transform: scale(1); + transform: scale(1); +} + +.range-md .range-knob-min.range-knob-min .range-knob { + border: 2px solid #bdbdbd; + background: #fff; +} + +.range-md .range-knob-min.range-knob-min .range-pin, +.range-md .range-knob-min.range-knob-min .range-pin::before { + color: #fff; + background: #bdbdbd; +} + +.range-md.range-disabled .range-bar-active { + background-color: #bdbdbd; +} + +.range-md.range-disabled .range-knob { + outline: 5px solid #fff; + background-color: #bdbdbd; + -webkit-transform: scale(0.55); + transform: scale(0.55); +} + +.range-md-primary .range-md .range-knob-min.range-knob-min .range-knob { + border: 2px solid #bdbdbd; + background: #fff; +} + +.range-md-primary .range-md .range-knob-min.range-knob-min .range-pin, +.range-md-primary .range-md .range-knob-min.range-knob-min .range-pin::before { + color: #fff; + background: #bdbdbd; +} + +.range-md-primary .range-bar-active, +.range-md-primary .range-knob, +.range-md-primary .range-pin, +.range-md-primary .range-pin::before { + background: #387ef5; +} + +.range-md-secondary .range-md .range-knob-min.range-knob-min .range-knob { + border: 2px solid #bdbdbd; + background: #fff; +} + +.range-md-secondary .range-md .range-knob-min.range-knob-min .range-pin, +.range-md-secondary .range-md .range-knob-min.range-knob-min .range-pin::before { + color: #fff; + background: #bdbdbd; +} + +.range-md-secondary .range-bar-active, +.range-md-secondary .range-knob, +.range-md-secondary .range-pin, +.range-md-secondary .range-pin::before { + background: #32db64; +} + +.range-md-danger .range-md .range-knob-min.range-knob-min .range-knob { + border: 2px solid #bdbdbd; + background: #fff; +} + +.range-md-danger .range-md .range-knob-min.range-knob-min .range-pin, +.range-md-danger .range-md .range-knob-min.range-knob-min .range-pin::before { + color: #fff; + background: #bdbdbd; +} + +.range-md-danger .range-bar-active, +.range-md-danger .range-knob, +.range-md-danger .range-pin, +.range-md-danger .range-pin::before { + background: #f53d3d; +} + +.range-md-light .range-md .range-knob-min.range-knob-min .range-knob { + border: 2px solid #bdbdbd; + background: #fff; +} + +.range-md-light .range-md .range-knob-min.range-knob-min .range-pin, +.range-md-light .range-md .range-knob-min.range-knob-min .range-pin::before { + color: #fff; + background: #bdbdbd; +} + +.range-md-light .range-bar-active, +.range-md-light .range-knob, +.range-md-light .range-pin, +.range-md-light .range-pin::before { + background: #f4f4f4; +} + +.range-md-dark .range-md .range-knob-min.range-knob-min .range-knob { + border: 2px solid #bdbdbd; + background: #fff; +} + +.range-md-dark .range-md .range-knob-min.range-knob-min .range-pin, +.range-md-dark .range-md .range-knob-min.range-knob-min .range-pin::before { + color: #fff; + background: #bdbdbd; +} + +.range-md-dark .range-bar-active, +.range-md-dark .range-knob, +.range-md-dark .range-pin, +.range-md-dark .range-pin::before { + background: #222; +} + +.range-wp { + padding: 8px 8px; +} + +.range-wp [range-left] { + margin: 0 12px 0 0; +} + +.range-wp [range-right] { + margin: 0 0 0 12px; +} + +.range-wp.range-has-pin { + padding-top: 28px; +} + +.range-wp .range-slider { + height: 42px; +} + +.range-wp .range-bar { + position: absolute; + top: 21px; + left: 0; + width: 100%; + height: 2px; + background: #bdbdbd; + pointer-events: none; +} + +.range-wp.range-pressed .range-bar-active { + will-change: left, right; +} + +.range-wp.range-pressed .range-knob-handle { + will-change: left; +} + +.range-wp .range-bar-active { + bottom: 0; + width: auto; + background: #387ef5; +} + +.range-wp .range-knob-handle { + position: absolute; + top: 21px; + left: 0%; + margin-top: -21px; + margin-left: -21px; + width: 42px; + height: 42px; + text-align: center; +} + +.range-wp .range-knob { + position: absolute; + top: 10px; + left: 17px; + width: 8px; + height: 24px; + border-radius: 4px; + background: #387ef5; + pointer-events: none; +} + +.range-wp .range-tick { + position: absolute; + top: 19px; + margin-left: -1px; + width: 2px; + height: 6px; + border-radius: 4px; + background: #bdbdbd; + pointer-events: none; +} + +.range-wp .range-tick-active { + background: #387ef5; +} + +.range-wp .range-pin { + position: relative; + top: -24px; + display: inline-block; + padding: 8px; + min-width: 28px; + border-radius: 50px; + font-size: 12px; + text-align: center; + color: #fff; + background: #387ef5; + -webkit-transform: translate3d(0, 28px, 0) scale(0.01); + transform: translate3d(0, 28px, 0) scale(0.01); + transition: -webkit-transform 120ms ease; + transition: transform 120ms ease; + transition: transform 120ms ease, -webkit-transform 120ms ease; +} + +.range-wp .range-knob-pressed .range-pin { + -webkit-transform: translate3d(0, 0, 0) scale(1); + transform: translate3d(0, 0, 0) scale(1); +} + +.range-wp.range-disabled { + opacity: .5; +} + +.range-wp-primary .range-bar-active, +.range-wp-primary .range-tick-active, +.range-wp-primary .range-knob, +.range-wp-primary .range-pin { + background: #387ef5; +} + +.range-wp-secondary .range-bar-active, +.range-wp-secondary .range-tick-active, +.range-wp-secondary .range-knob, +.range-wp-secondary .range-pin { + background: #32db64; +} + +.range-wp-danger .range-bar-active, +.range-wp-danger .range-tick-active, +.range-wp-danger .range-knob, +.range-wp-danger .range-pin { + background: #f53d3d; +} + +.range-wp-light .range-bar-active, +.range-wp-light .range-tick-active, +.range-wp-light .range-knob, +.range-wp-light .range-pin { + background: #f4f4f4; +} + +.range-wp-dark .range-bar-active, +.range-wp-dark .range-tick-active, +.range-wp-dark .range-knob, +.range-wp-dark .range-pin { + background: #222; +} + +ion-refresher { + position: absolute; + top: 0; + left: 0; + z-index: 0; + display: none; + width: 100%; + height: 60px; +} + +ion-refresher.refresher-active { + display: block; +} + +.has-refresher > .scroll-content { + margin-top: -1px; + border-top: 1px solid #ddd; + transition: -webkit-transform 320ms cubic-bezier(0.36, 0.66, 0.04, 1); + transition: transform 320ms cubic-bezier(0.36, 0.66, 0.04, 1); + transition: transform 320ms cubic-bezier(0.36, 0.66, 0.04, 1), -webkit-transform 320ms cubic-bezier(0.36, 0.66, 0.04, 1); +} + +ion-refresher-content { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; + height: 100%; +} + +.refresher-pulling, +.refresher-refreshing { + display: none; + width: 100%; +} + +.refresher-pulling-icon, +.refresher-refreshing-icon { + font-size: 30px; + text-align: center; + color: #000; + -webkit-transform-origin: center; + transform-origin: center; + transition: 200ms; +} + +.refresher-pulling-text, +.refresher-refreshing-text { + font-size: 16px; + text-align: center; + color: #000; +} + +ion-refresher-content[state=pulling] .refresher-pulling { + display: block; +} + +ion-refresher-content[state=ready] .refresher-pulling { + display: block; +} + +ion-refresher-content[state=ready] .refresher-pulling-icon { + -webkit-transform: rotate(180deg); + transform: rotate(180deg); +} + +ion-refresher-content[state=refreshing] .refresher-refreshing { + display: block; +} + +ion-refresher-content[state=cancelling] .refresher-pulling { + display: block; +} + +ion-refresher-content[state=cancelling] .refresher-pulling-icon { + -webkit-transform: scale(0); + transform: scale(0); +} + +ion-refresher-content[state=completing] .refresher-refreshing { + display: block; +} + +ion-refresher-content[state=completing] .refresher-refreshing-icon { + -webkit-transform: scale(0); + transform: scale(0); +} + +ion-scroll { + position: relative; + display: block; +} + +ion-scroll.scroll-x .scroll-content { + overflow-x: auto; +} + +ion-scroll.scroll-y .scroll-content { + overflow-y: auto; +} + +ion-scroll[center] .scroll-content { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; +} + +ion-scroll .scroll-content { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + overflow-y: hidden; + overflow-x: hidden; + -webkit-overflow-scrolling: touch; + will-change: scroll-position; +} + +ion-searchbar { + position: relative; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + width: 100%; +} + +.searchbar-icon { + pointer-events: none; +} + +.searchbar-input-container { + position: relative; + display: block; + -webkit-flex-shrink: 1; + -ms-flex-negative: 1; + flex-shrink: 1; + width: 100%; +} + +.searchbar-input { + -moz-appearance: none; + -ms-appearance: none; + -webkit-appearance: none; + appearance: none; + display: block; + width: 100%; + border: 0; + font-family: inherit; +} + +.searchbar-clear-icon { + display: none; + margin: 0; + padding: 0; + min-height: 0; +} + +.searchbar-has-value.searchbar-has-focus .searchbar-clear-icon { + display: block; +} + +.searchbar-ios { + padding: 0 8px; + min-height: 44px; + border-top: 0.55px solid transparent; + border-bottom: 0.55px solid rgba(0, 0, 0, 0.05); + background: rgba(0, 0, 0, 0.2); +} + +.searchbar-ios .searchbar-search-icon { + background-image: url("data:image/svg+xml;charset=utf-8,"); + position: absolute; + top: 9px; + left: 9px; + margin-left: calc(50% - 60px); + width: 14px; + height: 14px; + background-repeat: no-repeat; + background-size: 13px; +} + +.searchbar-ios .searchbar-input { + padding: 0 28px; + height: 3rem; + border-radius: 5px; + font-size: 1.4rem; + font-weight: 400; + color: #000; + background-color: #fff; +} + +.searchbar-ios .searchbar-input::-moz-placeholder { + color: rgba(0, 0, 0, 0.5); +} + +.searchbar-ios .searchbar-input:-ms-input-placeholder { + color: rgba(0, 0, 0, 0.5); +} + +.searchbar-ios .searchbar-input::-webkit-input-placeholder { + text-indent: 0; + color: rgba(0, 0, 0, 0.5); +} + +.searchbar-ios .searchbar-clear-icon { + background-image: url("data:image/svg+xml;charset=utf-8,"); + position: absolute; + top: 0; + right: 0; + width: 30px; + height: 100%; + background-repeat: no-repeat; + background-position: center; + background-size: 18px; +} + +.searchbar-ios .searchbar-ios-cancel { + display: none; + -webkit-flex-shrink: 0; + -ms-flex-negative: 0; + flex-shrink: 0; + margin-left: 0; + padding: 0; + padding-left: 8px; + height: 30px; + cursor: pointer; +} + +.searchbar-ios.searchbar-left-aligned .searchbar-search-icon { + margin-left: 0; +} + +.searchbar-ios.searchbar-left-aligned .searchbar-input { + padding-left: 30px; +} + +.searchbar-ios.searchbar-show-cancel.searchbar-has-focus .searchbar-ios-cancel { + display: block; +} + +.toolbar .searchbar-ios { + border-bottom-width: 0; + background: transparent; +} + +.toolbar .searchbar-ios .searchbar-input { + background: rgba(0, 0, 0, 0.08); +} + +.toolbar .searchbar-ios .searchbar-ios-cancel { + padding: 0; +} + +.toolbar .searchbar-ios.searchbar-has-focus .searchbar-ios-cancel { + padding-left: 8px; +} + +.searchbar-ios .searchbar-md-cancel { + display: none; +} + +.searchbar-ios-primary .searchbar-ios-cancel { + color: #387ef5; +} + +.searchbar-ios-primary .searchbar-ios-cancel:hover:not(.disable-hover) { + color: #3474e1; +} + +.toolbar-ios-primary .searchbar-ios .searchbar-search-icon { + background-image: url("data:image/svg+xml;charset=utf-8,"); +} + +.toolbar-ios-primary .searchbar-ios .searchbar-input { + color: #fff; + background: rgba(255, 255, 255, 0.08); +} + +.toolbar-ios-primary .searchbar-ios .searchbar-input::-moz-placeholder { + color: rgba(255, 255, 255, 0.5); +} + +.toolbar-ios-primary .searchbar-ios .searchbar-input:-ms-input-placeholder { + color: rgba(255, 255, 255, 0.5); +} + +.toolbar-ios-primary .searchbar-ios .searchbar-input::-webkit-input-placeholder { + text-indent: 0; + color: rgba(255, 255, 255, 0.5); +} + +.toolbar-ios-primary .searchbar-ios .searchbar-clear-icon { + background-image: url("data:image/svg+xml;charset=utf-8,"); +} + +.toolbar-ios-primary .searchbar-ios .searchbar-ios-cancel { + color: #fff; +} + +.searchbar-ios-secondary .searchbar-ios-cancel { + color: #32db64; +} + +.searchbar-ios-secondary .searchbar-ios-cancel:hover:not(.disable-hover) { + color: #2ec95c; +} + +.toolbar-ios-secondary .searchbar-ios .searchbar-search-icon { + background-image: url("data:image/svg+xml;charset=utf-8,"); +} + +.toolbar-ios-secondary .searchbar-ios .searchbar-input { + color: #fff; + background: rgba(255, 255, 255, 0.08); +} + +.toolbar-ios-secondary .searchbar-ios .searchbar-input::-moz-placeholder { + color: rgba(255, 255, 255, 0.5); +} + +.toolbar-ios-secondary .searchbar-ios .searchbar-input:-ms-input-placeholder { + color: rgba(255, 255, 255, 0.5); +} + +.toolbar-ios-secondary .searchbar-ios .searchbar-input::-webkit-input-placeholder { + text-indent: 0; + color: rgba(255, 255, 255, 0.5); +} + +.toolbar-ios-secondary .searchbar-ios .searchbar-clear-icon { + background-image: url("data:image/svg+xml;charset=utf-8,"); +} + +.toolbar-ios-secondary .searchbar-ios .searchbar-ios-cancel { + color: #fff; +} + +.searchbar-ios-danger .searchbar-ios-cancel { + color: #f53d3d; +} + +.searchbar-ios-danger .searchbar-ios-cancel:hover:not(.disable-hover) { + color: #e13838; +} + +.toolbar-ios-danger .searchbar-ios .searchbar-search-icon { + background-image: url("data:image/svg+xml;charset=utf-8,"); +} + +.toolbar-ios-danger .searchbar-ios .searchbar-input { + color: #fff; + background: rgba(255, 255, 255, 0.08); +} + +.toolbar-ios-danger .searchbar-ios .searchbar-input::-moz-placeholder { + color: rgba(255, 255, 255, 0.5); +} + +.toolbar-ios-danger .searchbar-ios .searchbar-input:-ms-input-placeholder { + color: rgba(255, 255, 255, 0.5); +} + +.toolbar-ios-danger .searchbar-ios .searchbar-input::-webkit-input-placeholder { + text-indent: 0; + color: rgba(255, 255, 255, 0.5); +} + +.toolbar-ios-danger .searchbar-ios .searchbar-clear-icon { + background-image: url("data:image/svg+xml;charset=utf-8,"); +} + +.toolbar-ios-danger .searchbar-ios .searchbar-ios-cancel { + color: #fff; +} + +.searchbar-ios-light .searchbar-ios-cancel { + color: #f4f4f4; +} + +.searchbar-ios-light .searchbar-ios-cancel:hover:not(.disable-hover) { + color: #e0e0e0; +} + +.toolbar-ios-light .searchbar-ios .searchbar-search-icon { + background-image: url("data:image/svg+xml;charset=utf-8,"); +} + +.toolbar-ios-light .searchbar-ios .searchbar-input { + color: #000; + background: rgba(0, 0, 0, 0.08); +} + +.toolbar-ios-light .searchbar-ios .searchbar-input::-moz-placeholder { + color: rgba(0, 0, 0, 0.5); +} + +.toolbar-ios-light .searchbar-ios .searchbar-input:-ms-input-placeholder { + color: rgba(0, 0, 0, 0.5); +} + +.toolbar-ios-light .searchbar-ios .searchbar-input::-webkit-input-placeholder { + text-indent: 0; + color: rgba(0, 0, 0, 0.5); +} + +.toolbar-ios-light .searchbar-ios .searchbar-clear-icon { + background-image: url("data:image/svg+xml;charset=utf-8,"); +} + +.toolbar-ios-light .searchbar-ios .searchbar-ios-cancel { + color: #387ef5; +} + +.searchbar-ios-dark .searchbar-ios-cancel { + color: #222; +} + +.searchbar-ios-dark .searchbar-ios-cancel:hover:not(.disable-hover) { + color: #343434; +} + +.toolbar-ios-dark .searchbar-ios .searchbar-search-icon { + background-image: url("data:image/svg+xml;charset=utf-8,"); +} + +.toolbar-ios-dark .searchbar-ios .searchbar-input { + color: #fff; + background: rgba(255, 255, 255, 0.08); +} + +.toolbar-ios-dark .searchbar-ios .searchbar-input::-moz-placeholder { + color: rgba(255, 255, 255, 0.5); +} + +.toolbar-ios-dark .searchbar-ios .searchbar-input:-ms-input-placeholder { + color: rgba(255, 255, 255, 0.5); +} + +.toolbar-ios-dark .searchbar-ios .searchbar-input::-webkit-input-placeholder { + text-indent: 0; + color: rgba(255, 255, 255, 0.5); +} + +.toolbar-ios-dark .searchbar-ios .searchbar-clear-icon { + background-image: url("data:image/svg+xml;charset=utf-8,"); +} + +.toolbar-ios-dark .searchbar-ios .searchbar-ios-cancel { + color: #fff; +} + +.searchbar-ios.searchbar-animated.searchbar-show-cancel .searchbar-ios-cancel { + display: block; +} + +.searchbar-ios.searchbar-animated .searchbar-search-icon, +.searchbar-ios.searchbar-animated .searchbar-input { + transition: all 300ms ease; +} + +.searchbar-animated.searchbar-has-focus .searchbar-ios-cancel { + opacity: 1; + pointer-events: auto; +} + +.searchbar-animated .searchbar-ios-cancel { + margin-right: -100%; + opacity: 0; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + transition: all 300ms ease; + pointer-events: none; +} + +.searchbar-md { + padding: 8px; + background: inherit; +} + +.searchbar-md .searchbar-search-icon { + background-image: url("data:image/svg+xml;charset=utf-8,"); + top: 11px; + left: 16px; + width: 21px; + height: 21px; +} + +.searchbar-md .searchbar-md-cancel { + top: 0; + left: 10px; + display: none; + margin: 0; + width: 21px; + height: 100%; +} + +.searchbar-md .searchbar-search-icon, +.searchbar-md .searchbar-md-cancel { + position: absolute; + background-repeat: no-repeat; + background-size: 20px; +} + +.searchbar-md .searchbar-search-icon.activated, +.searchbar-md .searchbar-md-cancel.activated { + background-color: transparent; +} + +.searchbar-md .searchbar-input { + padding: 6px 55px; + height: auto; + border-radius: 2px; + font-size: 1.6rem; + font-weight: 400; + line-height: 3rem; + color: #141414; + background-color: #fff; + background-position: 8px center; + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); +} + +.searchbar-md .searchbar-input::-moz-placeholder { + color: #aeaeae; +} + +.searchbar-md .searchbar-input:-ms-input-placeholder { + color: #aeaeae; +} + +.searchbar-md .searchbar-input::-webkit-input-placeholder { + text-indent: 0; + color: #aeaeae; +} + +.searchbar-md .searchbar-clear-icon { + background-image: url("data:image/svg+xml;charset=utf-8,"); + position: absolute; + top: 0; + right: 13px; + padding: 0; + width: 22px; + height: 100%; + background-repeat: no-repeat; + background-position: center; + background-size: 22px; +} + +.searchbar-md .searchbar-clear-icon.activated { + background-color: transparent; +} + +.searchbar-md.searchbar-has-focus.searchbar-show-cancel .searchbar-search-icon { + display: none; +} + +.searchbar-md.searchbar-has-focus.searchbar-show-cancel .searchbar-md-cancel { + display: -webkit-inline-flex; + display: -ms-inline-flexbox; + display: inline-flex; +} + +.toolbar .searchbar-md { + padding: 3px; +} + +.toolbar .searchbar-md .searchbar-md-cancel { + left: 14px; +} + +.searchbar-md .searchbar-ios-cancel { + display: none; +} + +.searchbar-wp { + padding: 8px; + background: transparent; +} + +.searchbar-wp .searchbar-input-container { + border: 2px solid rgba(0, 0, 0, 0.5); +} + +.searchbar-wp .searchbar-search-icon { + background-image: url("data:image/svg+xml;charset=utf-8,"); + position: absolute; + top: 5px; + right: 8px; + width: 21px; + height: 21px; + background-repeat: no-repeat; + background-size: 20px; +} + +.searchbar-wp .searchbar-search-icon.activated { + background-color: transparent; +} + +.searchbar-wp .searchbar-input { + padding: 0 8px; + height: auto; + border-radius: 0; + font-size: 1.4rem; + font-weight: 400; + line-height: 3rem; + color: #141414; + background-color: #fff; + background-position: 8px center; +} + +.searchbar-wp .searchbar-input::-moz-placeholder { + color: #858585; +} + +.searchbar-wp .searchbar-input:-ms-input-placeholder { + color: #858585; +} + +.searchbar-wp .searchbar-input::-webkit-input-placeholder { + text-indent: 0; + color: #858585; +} + +.searchbar-wp .searchbar-clear-icon { + background-image: url("data:image/svg+xml;charset=utf-8,"); + position: absolute; + top: 0; + right: 8px; + padding: 0; + width: 22px; + height: 100%; + background-repeat: no-repeat; + background-position: center; + background-size: 22px; +} + +.searchbar-wp .searchbar-clear-icon.activated { + background-color: transparent; +} + +.searchbar-wp.searchbar-has-focus .searchbar-input-container { + border-color: #387ef5; +} + +.searchbar-wp.searchbar-has-value .searchbar-search-icon { + display: none; +} + +.searchbar-wp .searchbar-ios-cancel { + display: none; +} + +.searchbar-wp .searchbar-md-cancel { + display: none; +} + +.toolbar .searchbar-wp { + padding: 2px; +} + +.searchbar-wp-primary.searchbar-has-focus .searchbar-input-container { + border-color: #387ef5; +} + +.searchbar-wp-secondary.searchbar-has-focus .searchbar-input-container { + border-color: #32db64; +} + +.searchbar-wp-danger.searchbar-has-focus .searchbar-input-container { + border-color: #f53d3d; +} + +.searchbar-wp-light.searchbar-has-focus .searchbar-input-container { + border-color: #f4f4f4; +} + +.searchbar-wp-dark.searchbar-has-focus .searchbar-input-container { + border-color: #222; +} + +ion-segment { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; + width: 100%; +} + +.segment-button { + position: relative; + display: block; + overflow: hidden; + margin-right: 0; + margin-left: 0; + text-align: center; + text-overflow: ellipsis; + white-space: nowrap; + cursor: pointer; +} + +.segment-ios .segment-button { + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + width: 0; + height: 3.2rem; + border-width: 1px; + border-style: solid; + border-color: #387ef5; + font-size: 1.3rem; + line-height: 3rem; + color: #387ef5; + background-color: transparent; +} + +.segment-ios .segment-button ion-icon { + font-size: 2.6rem; + line-height: 2.8rem; +} + +.segment-ios .segment-button.segment-activated { + color: #fff; + background-color: #387ef5; + opacity: 1; + transition: 100ms all linear; +} + +.segment-ios .segment-button:hover:not(.segment-activated) { + background-color: rgba(56, 126, 245, 0.1); + transition: 100ms all linear; +} + +.segment-ios .segment-button:active:not(.segment-activated) { + background-color: rgba(56, 126, 245, 0.16); + transition: 100ms all linear; +} + +.segment-ios .segment-button:first-of-type { + margin-right: 0; + border-radius: 4px 0 0 4px; +} + +.segment-ios .segment-button:not(:first-of-type) { + border-left-width: 0; +} + +.segment-ios .segment-button:last-of-type { + margin-left: 0; + border-left-width: 0; + border-radius: 0 4px 4px 0; +} + +.segment-ios .segment-button-disabled { + color: rgba(56, 126, 245, 0.3); + pointer-events: none; +} + +.toolbar-ios .segment-ios { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; +} + +.toolbar-ios .segment-button { + max-width: 100px; + height: 2.6rem; + font-size: 1.2rem; + line-height: 2.5rem; +} + +.toolbar-ios .segment-button ion-icon { + font-size: 2.2rem; + line-height: 2.4rem; +} + +.segment-ios-primary .segment-button { + border-color: #387ef5; + color: #387ef5; +} + +.segment-ios-primary .segment-button:hover:not(.segment-activated) { + background-color: rgba(56, 126, 245, 0.1); +} + +.segment-ios-primary .segment-button:active:not(.segment-activated) { + background-color: rgba(56, 126, 245, 0.16); +} + +.segment-ios-primary .segment-button.segment-activated { + color: #fff; + background-color: #387ef5; +} + +.segment-ios-primary .segment-button-disabled { + color: rgba(56, 126, 245, 0.3); +} + +.toolbar-ios-primary .segment-ios .segment-button.segment-activated { + color: #387ef5; +} + +.segment-ios-secondary .segment-button { + border-color: #32db64; + color: #32db64; +} + +.segment-ios-secondary .segment-button:hover:not(.segment-activated) { + background-color: rgba(50, 219, 100, 0.1); +} + +.segment-ios-secondary .segment-button:active:not(.segment-activated) { + background-color: rgba(50, 219, 100, 0.16); +} + +.segment-ios-secondary .segment-button.segment-activated { + color: #fff; + background-color: #32db64; +} + +.segment-ios-secondary .segment-button-disabled { + color: rgba(50, 219, 100, 0.3); +} + +.toolbar-ios-secondary .segment-ios .segment-button.segment-activated { + color: #32db64; +} + +.segment-ios-danger .segment-button { + border-color: #f53d3d; + color: #f53d3d; +} + +.segment-ios-danger .segment-button:hover:not(.segment-activated) { + background-color: rgba(245, 61, 61, 0.1); +} + +.segment-ios-danger .segment-button:active:not(.segment-activated) { + background-color: rgba(245, 61, 61, 0.16); +} + +.segment-ios-danger .segment-button.segment-activated { + color: #fff; + background-color: #f53d3d; +} + +.segment-ios-danger .segment-button-disabled { + color: rgba(245, 61, 61, 0.3); +} + +.toolbar-ios-danger .segment-ios .segment-button.segment-activated { + color: #f53d3d; +} + +.segment-ios-light .segment-button { + border-color: #f4f4f4; + color: #f4f4f4; +} + +.segment-ios-light .segment-button:hover:not(.segment-activated) { + background-color: rgba(244, 244, 244, 0.1); +} + +.segment-ios-light .segment-button:active:not(.segment-activated) { + background-color: rgba(244, 244, 244, 0.16); +} + +.segment-ios-light .segment-button.segment-activated { + color: #000; + background-color: #f4f4f4; +} + +.segment-ios-light .segment-button-disabled { + color: rgba(244, 244, 244, 0.3); +} + +.toolbar-ios-light .segment-ios .segment-button.segment-activated { + color: #f4f4f4; +} + +.segment-ios-dark .segment-button { + border-color: #222; + color: #222; +} + +.segment-ios-dark .segment-button:hover:not(.segment-activated) { + background-color: rgba(34, 34, 34, 0.1); +} + +.segment-ios-dark .segment-button:active:not(.segment-activated) { + background-color: rgba(34, 34, 34, 0.16); +} + +.segment-ios-dark .segment-button.segment-activated { + color: #fff; + background-color: #222; +} + +.segment-ios-dark .segment-button-disabled { + color: rgba(34, 34, 34, 0.3); +} + +.toolbar-ios-dark .segment-ios .segment-button.segment-activated { + color: #222; +} + +.segment-md .segment-button { + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + padding: 0 6px; + width: 0; + height: 4.2rem; + border-bottom-width: 2px; + border-bottom-style: solid; + border-bottom-color: rgba(0, 0, 0, 0.1); + font-size: 1.2rem; + font-weight: 500; + line-height: 4rem; + text-transform: uppercase; + color: #387ef5; + background-color: transparent; + opacity: 0.7; + transition: 100ms all linear; +} + +.segment-md .segment-button ion-icon { + font-size: 2.6rem; + line-height: 4rem; +} + +.segment-md .segment-button.activated, .segment-md .segment-button.segment-activated { + border-color: #387ef5; + opacity: 1; +} + +.segment-md .segment-button-disabled { + opacity: 0.3; + pointer-events: none; +} + +.toolbar .segment-md { + margin: 0 auto; +} + +.toolbar .segment-md .segment-button.activated, +.toolbar .segment-md .segment-button.segment-activated { + opacity: 1; +} + +.segment-md-primary .segment-button { + color: #387ef5; +} + +.segment-md-primary .segment-button.activated, .segment-md-primary .segment-button.segment-activated { + border-color: #387ef5; + color: #387ef5; + opacity: 1; +} + +.segment-md-secondary .segment-button { + color: #32db64; +} + +.segment-md-secondary .segment-button.activated, .segment-md-secondary .segment-button.segment-activated { + border-color: #32db64; + color: #32db64; + opacity: 1; +} + +.segment-md-danger .segment-button { + color: #f53d3d; +} + +.segment-md-danger .segment-button.activated, .segment-md-danger .segment-button.segment-activated { + border-color: #f53d3d; + color: #f53d3d; + opacity: 1; +} + +.segment-md-light .segment-button { + color: #f4f4f4; +} + +.segment-md-light .segment-button.activated, .segment-md-light .segment-button.segment-activated { + border-color: #f4f4f4; + color: #f4f4f4; + opacity: 1; +} + +.segment-md-dark .segment-button { + color: #222; +} + +.segment-md-dark .segment-button.activated, .segment-md-dark .segment-button.segment-activated { + border-color: #222; + color: #222; + opacity: 1; +} + +.segment-wp { + -webkit-justify-content: flex-start; + -ms-flex-pack: start; + justify-content: flex-start; +} + +.segment-wp .segment-button { + padding: 0 6px; + height: 4rem; + font-size: 1.3rem; + font-weight: bold; + line-height: 4rem; + text-transform: uppercase; + color: #000; + background-color: transparent; + opacity: 0.5; +} + +.segment-wp .segment-button.segment-activated { + opacity: 1; +} + +.segment-wp .segment-button ion-icon { + font-size: 2.6rem; + line-height: 4rem; +} + +.segment-wp .segment-button-disabled { + opacity: 0.3; + pointer-events: none; +} + +.toolbar .segment-wp { + margin: 0 auto; +} + +.segment-wp-primary .segment-button { + color: #387ef5; +} + +.segment-wp-primary .segment-button.activated, .segment-wp-primary .segment-button.segment-activated { + border-color: #387ef5; + color: #387ef5; + opacity: 1; +} + +.segment-wp-secondary .segment-button { + color: #32db64; +} + +.segment-wp-secondary .segment-button.activated, .segment-wp-secondary .segment-button.segment-activated { + border-color: #32db64; + color: #32db64; + opacity: 1; +} + +.segment-wp-danger .segment-button { + color: #f53d3d; +} + +.segment-wp-danger .segment-button.activated, .segment-wp-danger .segment-button.segment-activated { + border-color: #f53d3d; + color: #f53d3d; + opacity: 1; +} + +.segment-wp-light .segment-button { + color: #f4f4f4; +} + +.segment-wp-light .segment-button.activated, .segment-wp-light .segment-button.segment-activated { + border-color: #f4f4f4; + color: #f4f4f4; + opacity: 1; +} + +.segment-wp-dark .segment-button { + color: #222; +} + +.segment-wp-dark .segment-button.activated, .segment-wp-dark .segment-button.segment-activated { + border-color: #222; + color: #222; + opacity: 1; +} + +ion-select { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + overflow: hidden; + max-width: 45%; +} + +.select-text { + overflow: hidden; + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + min-width: 16px; + font-size: inherit; + text-overflow: ellipsis; + white-space: nowrap; +} + +.item-multiple-inputs ion-select { + position: relative; +} + +.select-disabled, +.item-select-disabled ion-label { + opacity: .4; + pointer-events: none; +} + +.select-ios { + padding: 11px 8px 11px 16px; +} + +.select-ios .select-placeholder { + color: #999; +} + +.select-ios .select-icon { + position: relative; + width: 12px; + height: 18px; +} + +.select-ios .select-icon .select-icon-inner { + position: absolute; + top: 50%; + left: 5px; + margin-top: -2px; + width: 0; + height: 0; + border-top: 5px solid; + border-right: 5px solid transparent; + border-left: 5px solid transparent; + color: #999; + pointer-events: none; +} + +.select-md { + padding: 13px 8px 13px 16px; +} + +.select-md .select-placeholder { + color: #999; +} + +.select-md .item-select ion-label { + margin-left: 0; +} + +.select-md .select-icon { + position: relative; + width: 12px; + height: 19px; +} + +.select-md .select-icon .select-icon-inner { + position: absolute; + top: 50%; + left: 5px; + margin-top: -3px; + width: 0; + height: 0; + border-top: 5px solid; + border-right: 5px solid transparent; + border-left: 5px solid transparent; + color: #999; + pointer-events: none; +} + +.select-wp { + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + margin: 13px 8px 13px 8px; + padding: 0 8px; + max-width: 100%; + border: 2px solid rgba(0, 0, 0, 0.5); + line-height: 3rem; +} + +.select-wp .select-placeholder { + color: rgba(0, 0, 0, 0.5); +} + +.item-wp.item-select ion-label { + margin-left: 0; +} + +.select-wp .select-icon { + position: relative; + -webkit-align-self: center; + -ms-flex-item-align: center; + -ms-grid-row-align: center; + align-self: center; + width: 18px; + height: 18px; +} + +.select-wp .select-icon .select-icon-inner { + position: absolute; + top: 3px; + left: 5px; + display: block; + width: 9px; + height: 9px; + border-top: 2px solid rgba(0, 0, 0, 0.5); + border-right: 2px solid rgba(0, 0, 0, 0.5); + -webkit-transform: rotate(135deg); + transform: rotate(135deg); + pointer-events: none; +} + +.select-wp .select-text { + min-height: 3rem; +} + +.hidden-show-when { + display: none !important; +} + +.hidden-hide-when { + display: none !important; +} + +/** + * Swiper 3.1.2 + * Most modern mobile touch slider and framework with hardware accelerated transitions + * + * http://www.idangero.us/swiper/ + * + * Copyright 2015, Vladimir Kharlampidi + * The iDangero.us + * http://www.idangero.us/ + * + * Licensed under MIT + * + * Released on: August 22, 2015 + */ +.swiper-container { + margin: 0 auto; + position: relative; + overflow: hidden; + /* Fix of Webkit flickering */ + z-index: 1; +} + +.swiper-container-no-flexbox .swiper-slide { + float: left; +} + +.swiper-container-vertical > .swiper-wrapper { + -ms-flex-direction: column; + -webkit-flex-direction: column; + flex-direction: column; +} + +.swiper-wrapper { + position: relative; + width: 100%; + height: 100%; + z-index: 1; + display: -ms-flexbox; + display: -webkit-flex; + display: flex; + transition-property: -webkit-transform; + transition-property: transform; + transition-property: transform, -webkit-transform; + box-sizing: content-box; +} + +.swiper-container-android .swiper-slide, +.swiper-wrapper { + -webkit-transform: translate3d(0px, 0, 0); + transform: translate3d(0px, 0, 0); +} + +.swiper-container-multirow > .swiper-wrapper { + -webkit-box-lines: multiple; + -moz-box-lines: multiple; + -ms-flex-wrap: wrap; + -webkit-flex-wrap: wrap; + flex-wrap: wrap; +} + +.swiper-container-free-mode > .swiper-wrapper { + transition-timing-function: ease-out; + margin: 0 auto; +} + +.swiper-slide { + -webkit-flex-shrink: 0; + -ms-flex: 0 0 auto; + -ms-flex-negative: 0; + flex-shrink: 0; + width: 100%; + height: 100%; + position: relative; +} + +/* a11y */ +.swiper-container .swiper-notification { + position: absolute; + left: 0; + top: 0; + pointer-events: none; + opacity: 0; + z-index: -1000; +} + +/* IE10 Windows Phone 8 Fixes */ +.swiper-wp8-horizontal { + -ms-touch-action: pan-y; + touch-action: pan-y; +} + +.swiper-wp8-vertical { + -ms-touch-action: pan-x; + touch-action: pan-x; +} + +/* Arrows */ +.swiper-button-prev, +.swiper-button-next { + position: absolute; + top: 50%; + width: 27px; + height: 44px; + margin-top: -22px; + z-index: 10; + cursor: pointer; + background-size: 27px 44px; + background-position: center; + background-repeat: no-repeat; +} + +.swiper-button-prev.swiper-button-disabled, +.swiper-button-next.swiper-button-disabled { + opacity: .35; + cursor: auto; + pointer-events: none; +} + +.swiper-button-prev, +.swiper-container-rtl .swiper-button-next { + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E"); + left: 10px; + right: auto; +} + +.swiper-button-prev.swiper-button-black, +.swiper-container-rtl .swiper-button-next.swiper-button-black { + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); +} + +.swiper-button-prev.swiper-button-white, +.swiper-container-rtl .swiper-button-next.swiper-button-white { + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); +} + +.swiper-button-next, +.swiper-container-rtl .swiper-button-prev { + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E"); + right: 10px; + left: auto; +} + +.swiper-button-next.swiper-button-black, +.swiper-container-rtl .swiper-button-prev.swiper-button-black { + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); +} + +.swiper-button-next.swiper-button-white, +.swiper-container-rtl .swiper-button-prev.swiper-button-white { + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); +} + +/* Pagination Styles */ +.swiper-pagination { + position: absolute; + text-align: center; + transition: 300ms; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + z-index: 10; +} + +.swiper-pagination.swiper-pagination-hidden { + opacity: 0; +} + +.swiper-pagination-bullet { + width: 8px; + height: 8px; + display: inline-block; + border-radius: 100%; + background: #000; + opacity: .2; +} + +button.swiper-pagination-bullet { + -moz-appearance: none; + -ms-appearance: none; + -webkit-appearance: none; + appearance: none; + border: 0; + margin: 0; + padding: 0; + box-shadow: none; +} + +.swiper-pagination-clickable .swiper-pagination-bullet { + cursor: pointer; +} + +.swiper-pagination-white .swiper-pagination-bullet { + background: #fff; +} + +.swiper-pagination-bullet-active { + opacity: 1; +} + +.swiper-pagination-white .swiper-pagination-bullet-active { + background: #fff; +} + +.swiper-pagination-black .swiper-pagination-bullet-active { + background: #000; +} + +.swiper-container-vertical > .swiper-pagination { + right: 10px; + top: 50%; + -webkit-transform: translate3d(0px, -50%, 0); + transform: translate3d(0px, -50%, 0); +} + +.swiper-container-vertical > .swiper-pagination .swiper-pagination-bullet { + margin: 5px 0; + display: block; +} + +.swiper-container-horizontal > .swiper-pagination { + bottom: 20px; + left: 0; + width: 100%; +} + +.swiper-container-horizontal > .swiper-pagination .swiper-pagination-bullet { + margin: 0 5px; +} + +/* 3D Container */ +.swiper-container-3d { + -webkit-perspective: 1200px; + -o-perspective: 1200px; + perspective: 1200px; +} + +.swiper-container-3d .swiper-wrapper, +.swiper-container-3d .swiper-slide, +.swiper-container-3d .swiper-slide-shadow-left, +.swiper-container-3d .swiper-slide-shadow-right, +.swiper-container-3d .swiper-slide-shadow-top, +.swiper-container-3d .swiper-slide-shadow-bottom, +.swiper-container-3d .swiper-cube-shadow { + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; +} + +.swiper-container-3d .swiper-slide-shadow-left, +.swiper-container-3d .swiper-slide-shadow-right, +.swiper-container-3d .swiper-slide-shadow-top, +.swiper-container-3d .swiper-slide-shadow-bottom { + position: absolute; + left: 0; + bottom: 0; + width: 100%; + height: 100%; + pointer-events: none; + z-index: 10; +} + +.swiper-container-3d .swiper-slide-shadow-left { + /* Safari 4+, Chrome */ + /* Chrome 10+, Safari 5.1+, iOS 5+ */ + /* Firefox 3.6-15 */ + /* Opera 11.10-12.00 */ + background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent); + /* Firefox 16+, IE10, Opera 12.50+ */ +} + +.swiper-container-3d .swiper-slide-shadow-right { + /* Safari 4+, Chrome */ + /* Chrome 10+, Safari 5.1+, iOS 5+ */ + /* Firefox 3.6-15 */ + /* Opera 11.10-12.00 */ + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent); + /* Firefox 16+, IE10, Opera 12.50+ */ +} + +.swiper-container-3d .swiper-slide-shadow-top { + /* Safari 4+, Chrome */ + /* Chrome 10+, Safari 5.1+, iOS 5+ */ + /* Firefox 3.6-15 */ + /* Opera 11.10-12.00 */ + background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent); + /* Firefox 16+, IE10, Opera 12.50+ */ +} + +.swiper-container-3d .swiper-slide-shadow-bottom { + /* Safari 4+, Chrome */ + /* Chrome 10+, Safari 5.1+, iOS 5+ */ + /* Firefox 3.6-15 */ + /* Opera 11.10-12.00 */ + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent); + /* Firefox 16+, IE10, Opera 12.50+ */ +} + +/* Coverflow */ +.swiper-container-coverflow .swiper-wrapper { + /* Windows 8 IE 10 fix */ + -ms-perspective: 1200px; +} + +/* Fade */ +.swiper-container-fade.swiper-container-free-mode .swiper-slide { + transition-timing-function: ease-out; +} + +.swiper-container-fade .swiper-slide { + pointer-events: none; +} + +.swiper-container-fade .swiper-slide .swiper-slide { + pointer-events: none; +} + +.swiper-container-fade .swiper-slide-active, +.swiper-container-fade .swiper-slide-active .swiper-slide-active { + pointer-events: auto; +} + +/* Cube */ +.swiper-container-cube { + overflow: visible; +} + +.swiper-container-cube .swiper-slide { + pointer-events: none; + visibility: hidden; + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + width: 100%; + height: 100%; + z-index: 1; +} + +.swiper-container-cube.swiper-container-rtl .swiper-slide { + -webkit-transform-origin: 100% 0; + transform-origin: 100% 0; +} + +.swiper-container-cube .swiper-slide-active, +.swiper-container-cube .swiper-slide-next, +.swiper-container-cube .swiper-slide-prev, +.swiper-container-cube .swiper-slide-next + .swiper-slide { + pointer-events: auto; + visibility: visible; +} + +.swiper-container-cube .swiper-slide-shadow-top, +.swiper-container-cube .swiper-slide-shadow-bottom, +.swiper-container-cube .swiper-slide-shadow-left, +.swiper-container-cube .swiper-slide-shadow-right { + z-index: 0; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; +} + +.swiper-container-cube .swiper-cube-shadow { + position: absolute; + left: 0; + bottom: 0; + width: 100%; + height: 100%; + background: #000; + opacity: .6; + -webkit-filter: blur(50px); + filter: blur(50px); + z-index: 0; +} + +/* Scrollbar */ +.swiper-scrollbar { + border-radius: 10px; + position: relative; + -ms-touch-action: none; + background: rgba(0, 0, 0, 0.1); +} + +.swiper-container-horizontal > .swiper-scrollbar { + position: absolute; + left: 1%; + bottom: 3px; + z-index: 50; + height: 5px; + width: 98%; +} + +.swiper-container-vertical > .swiper-scrollbar { + position: absolute; + right: 3px; + top: 1%; + z-index: 50; + width: 5px; + height: 98%; +} + +.swiper-scrollbar-drag { + height: 100%; + width: 100%; + position: relative; + background: rgba(0, 0, 0, 0.5); + border-radius: 10px; + left: 0; + top: 0; +} + +.swiper-scrollbar-cursor-drag { + cursor: move; +} + +/* Preloader */ +.swiper-lazy-preloader { + width: 42px; + height: 42px; + position: absolute; + left: 50%; + top: 50%; + margin-left: -21px; + margin-top: -21px; + z-index: 10; + -webkit-transform-origin: 50%; + transform-origin: 50%; + -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite; + animation: swiper-preloader-spin 1s steps(12, end) infinite; +} + +.swiper-lazy-preloader:after { + display: block; + content: ""; + width: 100%; + height: 100%; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); + background-position: 50%; + background-size: 100%; + background-repeat: no-repeat; +} + +.swiper-lazy-preloader-white:after { + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); +} + +@-webkit-keyframes swiper-preloader-spin { + 100% { + -webkit-transform: rotate(360deg); + } +} + +@keyframes swiper-preloader-spin { + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +ion-slides { + width: 100%; + height: 100%; + display: block; +} + +.slide-zoom { + display: block; + width: 100%; + text-align: center; +} + +.swiper-container { + width: 100%; + height: 100%; + padding: 0; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + overflow: hidden; +} + +.swiper-wrapper { + width: 100%; + height: 100%; + padding: 0; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; +} + +.swiper-slide { + width: 100%; + height: 100%; + box-sizing: border-box; + text-align: center; + font-size: 18px; + /* Center slide text vertically */ + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; +} + +.swiper-slide img { + width: auto; + height: auto; + max-width: 100%; + max-height: 100%; +} + +ion-spinner { + position: relative; + display: inline-block; + width: 28px; + height: 28px; +} + +ion-spinner svg { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + -webkit-transform: translateZ(0); + transform: translateZ(0); +} + +ion-spinner.spinner-paused svg { + -webkit-animation-play-state: paused; + animation-play-state: paused; +} + +.spinner-ios line, +.spinner-ios-small line { + stroke-width: 4px; + stroke-linecap: round; +} + +.spinner-ios svg, +.spinner-ios-small svg { + -webkit-animation: spinner-fade-out 1s linear infinite; + animation: spinner-fade-out 1s linear infinite; +} + +.spinner-bubbles svg { + -webkit-animation: spinner-scale-out 1s linear infinite; + animation: spinner-scale-out 1s linear infinite; +} + +.spinner-circles svg { + -webkit-animation: spinner-fade-out 1s linear infinite; + animation: spinner-fade-out 1s linear infinite; +} + +.spinner-crescent circle { + fill: transparent; + stroke-width: 4px; + stroke-dasharray: 128px; + stroke-dashoffset: 82px; +} + +.spinner-crescent svg { + -webkit-animation: spinner-rotate 1s linear infinite; + animation: spinner-rotate 1s linear infinite; +} + +.spinner-dots circle { + stroke-width: 0; +} + +.spinner-dots svg { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-animation: spinner-dots 1s linear infinite; + animation: spinner-dots 1s linear infinite; +} + +@-webkit-keyframes spinner-fade-out { + 0% { + opacity: 1; + } + 100% { + opacity: 0; + } +} + +@keyframes spinner-fade-out { + 0% { + opacity: 1; + } + 100% { + opacity: 0; + } +} + +@-webkit-keyframes spinner-scale-out { + 0% { + -webkit-transform: scale(1, 1); + transform: scale(1, 1); + } + 100% { + -webkit-transform: scale(0, 0); + transform: scale(0, 0); + } +} + +@keyframes spinner-scale-out { + 0% { + -webkit-transform: scale(1, 1); + transform: scale(1, 1); + } + 100% { + -webkit-transform: scale(0, 0); + transform: scale(0, 0); + } +} + +@-webkit-keyframes spinner-rotate { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +@keyframes spinner-rotate { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +@-webkit-keyframes spinner-dots { + 0% { + opacity: .9; + -webkit-transform: scale(1, 1); + transform: scale(1, 1); + } + 50% { + opacity: .3; + -webkit-transform: scale(0.4, 0.4); + transform: scale(0.4, 0.4); + } + 100% { + opacity: .9; + -webkit-transform: scale(1, 1); + transform: scale(1, 1); + } +} + +@keyframes spinner-dots { + 0% { + opacity: .9; + -webkit-transform: scale(1, 1); + transform: scale(1, 1); + } + 50% { + opacity: .3; + -webkit-transform: scale(0.4, 0.4); + transform: scale(0.4, 0.4); + } + 100% { + opacity: .9; + -webkit-transform: scale(1, 1); + transform: scale(1, 1); + } +} + +.spinner-ios-ios line, +.spinner-ios-ios-small line { + stroke: #69717d; +} + +.spinner-ios-bubbles circle { + fill: #000; +} + +.spinner-ios-circles circle { + fill: #69717d; +} + +.spinner-ios-crescent circle { + stroke: #000; +} + +.spinner-ios-dots circle { + fill: #444; +} + +.spinner-ios-primary.spinner-ios line, +.spinner-ios-primary.spinner-ios-small line, +.spinner-ios-primary.spinner-crescent circle { + stroke: #387ef5; +} + +.spinner-ios-primary.spinner-bubbles circle, +.spinner-ios-primary.spinner-circles circle, +.spinner-ios-primary.spinner-dots circle { + fill: #387ef5; +} + +.spinner-ios-secondary.spinner-ios line, +.spinner-ios-secondary.spinner-ios-small line, +.spinner-ios-secondary.spinner-crescent circle { + stroke: #32db64; +} + +.spinner-ios-secondary.spinner-bubbles circle, +.spinner-ios-secondary.spinner-circles circle, +.spinner-ios-secondary.spinner-dots circle { + fill: #32db64; +} + +.spinner-ios-danger.spinner-ios line, +.spinner-ios-danger.spinner-ios-small line, +.spinner-ios-danger.spinner-crescent circle { + stroke: #f53d3d; +} + +.spinner-ios-danger.spinner-bubbles circle, +.spinner-ios-danger.spinner-circles circle, +.spinner-ios-danger.spinner-dots circle { + fill: #f53d3d; +} + +.spinner-ios-light.spinner-ios line, +.spinner-ios-light.spinner-ios-small line, +.spinner-ios-light.spinner-crescent circle { + stroke: #f4f4f4; +} + +.spinner-ios-light.spinner-bubbles circle, +.spinner-ios-light.spinner-circles circle, +.spinner-ios-light.spinner-dots circle { + fill: #f4f4f4; +} + +.spinner-ios-dark.spinner-ios line, +.spinner-ios-dark.spinner-ios-small line, +.spinner-ios-dark.spinner-crescent circle { + stroke: #222; +} + +.spinner-ios-dark.spinner-bubbles circle, +.spinner-ios-dark.spinner-circles circle, +.spinner-ios-dark.spinner-dots circle { + fill: #222; +} + +.spinner-md-ios line, +.spinner-md-ios-small line { + stroke: #69717d; +} + +.spinner-md-bubbles circle { + fill: #000; +} + +.spinner-md-circles circle { + fill: #69717d; +} + +.spinner-md-crescent circle { + stroke: #000; +} + +.spinner-md-dots circle { + fill: #444; +} + +.spinner-md-primary.spinner-ios line, +.spinner-md-primary.spinner-ios-small line, +.spinner-md-primary.spinner-crescent circle { + stroke: #387ef5; +} + +.spinner-md-primary.spinner-bubbles circle, +.spinner-md-primary.spinner-circles circle, +.spinner-md-primary.spinner-dots circle { + fill: #387ef5; +} + +.spinner-md-secondary.spinner-ios line, +.spinner-md-secondary.spinner-ios-small line, +.spinner-md-secondary.spinner-crescent circle { + stroke: #32db64; +} + +.spinner-md-secondary.spinner-bubbles circle, +.spinner-md-secondary.spinner-circles circle, +.spinner-md-secondary.spinner-dots circle { + fill: #32db64; +} + +.spinner-md-danger.spinner-ios line, +.spinner-md-danger.spinner-ios-small line, +.spinner-md-danger.spinner-crescent circle { + stroke: #f53d3d; +} + +.spinner-md-danger.spinner-bubbles circle, +.spinner-md-danger.spinner-circles circle, +.spinner-md-danger.spinner-dots circle { + fill: #f53d3d; +} + +.spinner-md-light.spinner-ios line, +.spinner-md-light.spinner-ios-small line, +.spinner-md-light.spinner-crescent circle { + stroke: #f4f4f4; +} + +.spinner-md-light.spinner-bubbles circle, +.spinner-md-light.spinner-circles circle, +.spinner-md-light.spinner-dots circle { + fill: #f4f4f4; +} + +.spinner-md-dark.spinner-ios line, +.spinner-md-dark.spinner-ios-small line, +.spinner-md-dark.spinner-crescent circle { + stroke: #222; +} + +.spinner-md-dark.spinner-bubbles circle, +.spinner-md-dark.spinner-circles circle, +.spinner-md-dark.spinner-dots circle { + fill: #222; +} + +.spinner-wp-ios line, +.spinner-wp-ios-small line { + stroke: #69717d; +} + +.spinner-wp-bubbles circle { + fill: #000; +} + +.spinner-wp-circles circle { + fill: #69717d; +} + +.spinner-wp-crescent circle { + stroke: #000; +} + +.spinner-wp-dots circle { + fill: #444; +} + +.spinner-wp-primary.spinner-ios line, +.spinner-wp-primary.spinner-ios-small line, +.spinner-wp-primary.spinner-crescent circle { + stroke: #387ef5; +} + +.spinner-wp-primary.spinner-bubbles circle, +.spinner-wp-primary.spinner-circles circle, +.spinner-wp-primary.spinner-dots circle { + fill: #387ef5; +} + +.spinner-wp-secondary.spinner-ios line, +.spinner-wp-secondary.spinner-ios-small line, +.spinner-wp-secondary.spinner-crescent circle { + stroke: #32db64; +} + +.spinner-wp-secondary.spinner-bubbles circle, +.spinner-wp-secondary.spinner-circles circle, +.spinner-wp-secondary.spinner-dots circle { + fill: #32db64; +} + +.spinner-wp-danger.spinner-ios line, +.spinner-wp-danger.spinner-ios-small line, +.spinner-wp-danger.spinner-crescent circle { + stroke: #f53d3d; +} + +.spinner-wp-danger.spinner-bubbles circle, +.spinner-wp-danger.spinner-circles circle, +.spinner-wp-danger.spinner-dots circle { + fill: #f53d3d; +} + +.spinner-wp-light.spinner-ios line, +.spinner-wp-light.spinner-ios-small line, +.spinner-wp-light.spinner-crescent circle { + stroke: #f4f4f4; +} + +.spinner-wp-light.spinner-bubbles circle, +.spinner-wp-light.spinner-circles circle, +.spinner-wp-light.spinner-dots circle { + fill: #f4f4f4; +} + +.spinner-wp-dark.spinner-ios line, +.spinner-wp-dark.spinner-ios-small line, +.spinner-wp-dark.spinner-crescent circle { + stroke: #222; +} + +.spinner-wp-dark.spinner-bubbles circle, +.spinner-wp-dark.spinner-circles circle, +.spinner-wp-dark.spinner-dots circle { + fill: #222; +} + +.tabbar { + position: absolute; + bottom: 0; + left: 0; + z-index: 10; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + width: 100%; + opacity: 0; +} + +.tabbar.show-tabbar { + opacity: 1; +} + +[tabsPlacement=top] > .tabbar { + top: 0; + bottom: auto; +} + +.tab-button { + position: relative; + z-index: 0; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + overflow: hidden; + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + -webkit-align-self: center; + -ms-flex-item-align: center; + align-self: center; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; + margin: 0; + border: 0; + border-radius: 0; + text-align: center; + text-decoration: none; + background: none; + cursor: pointer; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.tab-disabled { + pointer-events: none; +} + +.tab-disabled ion-badge, +.tab-disabled ion-icon, +.tab-disabled span { + opacity: .4; +} + +.tab-button-text { + margin-top: 3px; + margin-bottom: 2px; +} + +.tab-button-text, +.tab-button-icon { + display: none; + overflow: hidden; + -webkit-align-self: center; + -ms-flex-item-align: center; + -ms-grid-row-align: center; + align-self: center; + min-width: 26px; + max-width: 100%; + text-overflow: ellipsis; + white-space: nowrap; +} + +.has-icon .tab-button-icon, +.has-title .tab-button-text { + display: block; +} + +.has-title-only .tab-button-text { + white-space: normal; +} + +[tabsLayout=icon-bottom] .tab-button .tab-button-icon { + -webkit-order: 10; + -ms-flex-order: 10; + order: 10; +} + +[tabsLayout=icon-left] .tab-button, +[tabsLayout=icon-right] .tab-button { + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row; +} + +[tabsLayout=icon-left] .tab-button .tab-button-icon { + padding-right: 8px; + text-align: right; +} + +[tabsLayout=icon-right] .tab-button .tab-button-icon { + -webkit-order: 10; + -ms-flex-order: 10; + order: 10; + padding-left: 8px; + text-align: left; +} + +.tab-hidden, +.tab-highlight, +[tabsLayout=icon-hide] .tab-button-icon, +[tabsLayout=title-hide] .tab-button-text { + display: none; +} + +.tab-badge { + position: absolute; + top: 6%; + right: 4%; + right: calc(50% - 50px); + padding: 1px 6px; + height: auto; + font-size: 12px; + line-height: 16px; +} + +.has-icon .tab-badge { + right: calc(50% - 30px); +} + +[tabsLayout=icon-bottom] .tab-badge, +[tabsLayout=icon-left] .tab-badge, +[tabsLayout=icon-right] .tab-badge { + right: calc(50% - 50px); +} + +.tabs-ios .tabbar { + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; + border-top: 0.55px solid rgba(0, 0, 0, 0.3); + background: #f8f8f8; +} + +.tabs-ios[tabsPlacement=top] .tabbar { + border-top: 0; + border-bottom: 0.55px solid rgba(0, 0, 0, 0.3); +} + +.tabs-ios .tab-button { + padding: 0 2px; + max-width: 240px; + min-height: 49px; + font-size: 10px; + color: #8c8c8c; +} + +.tabs-ios .tab-button:hover:not(.disable-hover), +.tabs-ios .tab-button[aria-selected=true] { + color: #387ef5; +} + +.tabs-ios .tab-button[aria-selected=true] .tab-button-icon { + color: #387ef5; +} + +.tabs-ios .tab-button-text { + margin-top: 0; + margin-bottom: 1px; + min-height: 11px; +} + +.tabs-ios .has-title-only .tab-button-text { + font-size: 12px; +} + +.tabs-ios .tab-button-icon { + margin-top: 4px; + margin-bottom: 1px; + min-width: 35px; + height: 30px; + font-size: 30px; + color: #8c8c8c; +} + +.tabs-ios .tab-button-icon::before { + vertical-align: top; +} + +.tabs-ios[tabsLayout=icon-right] .tab-button .tab-button-text, +.tabs-ios[tabsLayout=icon-left] .tab-button .tab-button-text { + font-size: 1.4rem; + line-height: 1.1; +} + +.tabs-ios[tabsLayout=icon-right] .tab-button ion-icon, +.tabs-ios[tabsLayout=icon-left] .tab-button ion-icon { + min-width: 24px; + height: 26px; + font-size: 24px; +} + +.tabs-ios[tabsLayout=icon-hide] .tab-button, +.tabs-ios .tab-button.has-title-only { + min-height: 41px; +} + +.tabs-ios[tabsLayout=icon-hide] .tab-button .tab-button-text, +.tabs-ios .tab-button.has-title-only .tab-button-text { + margin: 2px 0; + font-size: 1.4rem; + line-height: 1.1; +} + +.tabs-ios[tabsLayout=title-hide] .tab-button, +.tabs-ios .tab-button.icon-only { + min-height: 41px; +} + +.tabs-ios-primary .tabbar { + border-color: #0c60ee; + background-color: #387ef5; +} + +.tabs-ios-primary .tab-button, +.tabs-ios-primary .tab-button-icon, +.tabs-ios-primary .tab-button:hover:not(.disable-hover), +.tabs-ios-primary .tab-button:hover:not(.disable-hover) .tab-button-icon { + color: rgba(255, 255, 255, 0.7); +} + +.tabs-ios-primary .tab-button[aria-selected=true], +.tabs-ios-primary .tab-button[aria-selected=true] .tab-button-icon { + color: #fff; +} + +.tabs-ios-secondary .tabbar { + border-color: #21b94e; + background-color: #32db64; +} + +.tabs-ios-secondary .tab-button, +.tabs-ios-secondary .tab-button-icon, +.tabs-ios-secondary .tab-button:hover:not(.disable-hover), +.tabs-ios-secondary .tab-button:hover:not(.disable-hover) .tab-button-icon { + color: rgba(255, 255, 255, 0.7); +} + +.tabs-ios-secondary .tab-button[aria-selected=true], +.tabs-ios-secondary .tab-button[aria-selected=true] .tab-button-icon { + color: #fff; +} + +.tabs-ios-danger .tabbar { + border-color: #f30d0d; + background-color: #f53d3d; +} + +.tabs-ios-danger .tab-button, +.tabs-ios-danger .tab-button-icon, +.tabs-ios-danger .tab-button:hover:not(.disable-hover), +.tabs-ios-danger .tab-button:hover:not(.disable-hover) .tab-button-icon { + color: rgba(255, 255, 255, 0.7); +} + +.tabs-ios-danger .tab-button[aria-selected=true], +.tabs-ios-danger .tab-button[aria-selected=true] .tab-button-icon { + color: #fff; +} + +.tabs-ios-light .tabbar { + border-color: #dbdbdb; + background-color: #f4f4f4; +} + +.tabs-ios-light .tab-button, +.tabs-ios-light .tab-button-icon, +.tabs-ios-light .tab-button:hover:not(.disable-hover), +.tabs-ios-light .tab-button:hover:not(.disable-hover) .tab-button-icon { + color: rgba(0, 0, 0, 0.7); +} + +.tabs-ios-light .tab-button[aria-selected=true], +.tabs-ios-light .tab-button[aria-selected=true] .tab-button-icon { + color: #000; +} + +.tabs-ios-dark .tabbar { + border-color: #090909; + background-color: #222; +} + +.tabs-ios-dark .tab-button, +.tabs-ios-dark .tab-button-icon, +.tabs-ios-dark .tab-button:hover:not(.disable-hover), +.tabs-ios-dark .tab-button:hover:not(.disable-hover) .tab-button-icon { + color: rgba(255, 255, 255, 0.7); +} + +.tabs-ios-dark .tab-button[aria-selected=true], +.tabs-ios-dark .tab-button[aria-selected=true] .tab-button-icon { + color: #fff; +} + +.tabs-md .tabbar { + background: #f8f8f8; +} + +.tabs-md .tab-button { + padding: 0; + min-height: 5.6rem; + font-weight: normal; + color: rgba(60, 60, 60, 0.7); +} + +.tabs-md .tab-button[aria-selected=true] { + padding: 0; + color: #387ef5; +} + +.tabs-md .tab-button-text { + margin: 0; + font-size: 1.2rem; + text-transform: none; + -webkit-transform-origin: 50% 80%; + transform-origin: 50% 80%; + transition: -webkit-transform 0.3s ease-in-out; + transition: transform 0.3s ease-in-out; + transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; +} + +.tabs-md .tab-button[aria-selected=true] .tab-button-text { + -webkit-transform: scale3d(1.16667, 1.16667, 1); + transform: scale3d(1.16667, 1.16667, 1); + transition: -webkit-transform 0.3s ease-in-out; + transition: transform 0.3s ease-in-out; + transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; +} + +.tabs-md[tabsLayout=icon-top] .has-icon .tab-button-text { + margin-top: 4px; + margin-bottom: 0; +} + +.tabs-md[tabsLayout=icon-bottom] .tab-button .tab-button-text { + margin-top: 0; +} + +.tabs-md .tab-button-icon { + margin-top: 1px; + min-width: 2.4rem; + font-size: 2.4rem; + color: rgba(60, 60, 60, 0.7); + -webkit-transform-origin: 50% 150%; + transform-origin: 50% 150%; + transition: -webkit-transform 0.3s ease-in-out; + transition: transform 0.3s ease-in-out; + transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; +} + +.tabs-md .tab-button[aria-selected=true] .tab-button-icon { + color: #387ef5; + -webkit-transform: translate3d(0, -2px, 0); + transform: translate3d(0, -2px, 0); +} + +.tabs-md[tabsLayout=icon-right] .tab-button[aria-selected=true] .tab-button-icon { + -webkit-transform: translate3d(2px, 0, 0); + transform: translate3d(2px, 0, 0); +} + +.tabs-md[tabsLayout=icon-bottom] .tab-button[aria-selected=true] .tab-button-icon { + -webkit-transform: translate3d(0, 2px, 0); + transform: translate3d(0, 2px, 0); +} + +.tabs-md[tabsLayout=icon-left] .tab-button[aria-selected=true] .tab-button-icon { + -webkit-transform: translate3d(-2px, 0, 0); + transform: translate3d(-2px, 0, 0); +} + +.tabs-md[tabsLayout=icon-hide] .tab-button, +.tabs-md[tabsLayout=title-hide] .tab-button, +.tabs-md .tab-button.icon-only, +.tabs-md .tab-button.has-title-only { + padding: 0 10px; +} + +.tabs-md[tabsHighlight=true] .tab-highlight { + position: absolute; + bottom: 0; + left: 0; + display: block; + width: 1px; + height: 2px; + background: #387ef5; + -webkit-transform: translateZ(0); + transform: translateZ(0); + -webkit-transform-origin: 0 0; + transform-origin: 0 0; +} + +.tabs-md[tabsHighlight=true] .tab-highlight.animate { + transition-duration: 300ms; +} + +.tabs-md[tabsHighlight=true][tabsPlacement=bottom] .tab-highlight { + top: 0; +} + +.tabs-md-primary .tabbar { + background-color: #387ef5; +} + +.tabs-md-primary .tab-button, +.tabs-md-primary .tab-button-icon { + color: rgba(255, 255, 255, 0.7); +} + +.tabs-md-primary .tab-button:hover:not(.disable-hover), +.tabs-md-primary .tab-button[aria-selected=true], +.tabs-md-primary .tab-button[aria-selected=true] .tab-button-icon { + color: #fff; +} + +.tabs-md-primary[tabsHighlight=true] .tab-highlight { + background: #fff; +} + +.tabs-md-secondary .tabbar { + background-color: #32db64; +} + +.tabs-md-secondary .tab-button, +.tabs-md-secondary .tab-button-icon { + color: rgba(255, 255, 255, 0.7); +} + +.tabs-md-secondary .tab-button:hover:not(.disable-hover), +.tabs-md-secondary .tab-button[aria-selected=true], +.tabs-md-secondary .tab-button[aria-selected=true] .tab-button-icon { + color: #fff; +} + +.tabs-md-secondary[tabsHighlight=true] .tab-highlight { + background: #fff; +} + +.tabs-md-danger .tabbar { + background-color: #f53d3d; +} + +.tabs-md-danger .tab-button, +.tabs-md-danger .tab-button-icon { + color: rgba(255, 255, 255, 0.7); +} + +.tabs-md-danger .tab-button:hover:not(.disable-hover), +.tabs-md-danger .tab-button[aria-selected=true], +.tabs-md-danger .tab-button[aria-selected=true] .tab-button-icon { + color: #fff; +} + +.tabs-md-danger[tabsHighlight=true] .tab-highlight { + background: #fff; +} + +.tabs-md-light .tabbar { + background-color: #f4f4f4; +} + +.tabs-md-light .tab-button, +.tabs-md-light .tab-button-icon { + color: rgba(0, 0, 0, 0.7); +} + +.tabs-md-light .tab-button:hover:not(.disable-hover), +.tabs-md-light .tab-button[aria-selected=true], +.tabs-md-light .tab-button[aria-selected=true] .tab-button-icon { + color: #000; +} + +.tabs-md-light[tabsHighlight=true] .tab-highlight { + background: #000; +} + +.tabs-md-dark .tabbar { + background-color: #222; +} + +.tabs-md-dark .tab-button, +.tabs-md-dark .tab-button-icon { + color: rgba(255, 255, 255, 0.7); +} + +.tabs-md-dark .tab-button:hover:not(.disable-hover), +.tabs-md-dark .tab-button[aria-selected=true], +.tabs-md-dark .tab-button[aria-selected=true] .tab-button-icon { + color: #fff; +} + +.tabs-md-dark[tabsHighlight=true] .tab-highlight { + background: #fff; +} + +.tabs-wp .tabbar { + background: #f8f8f8; +} + +.tabs-wp .tab-button { + padding: 12px 10px 5px 10px; + min-height: 4.8rem; + border-bottom: 2px solid transparent; + border-radius: 0; + font-size: 1.2rem; + font-weight: normal; + color: rgba(140, 140, 140, 0.7); + box-shadow: none; +} + +.tabs-wp .tab-button[aria-selected=true] { + border-bottom-color: #387ef5; + color: #387ef5; +} + +.tabs-wp .tab-button.activated { + background: rgba(0, 0, 0, 0.1); +} + +.tabs-wp[tabsPlacement=bottom] .tab-button { + border-top: 2px solid transparent; + border-bottom-width: 0; +} + +.tabs-wp[tabsPlacement=bottom] .tab-button[aria-selected=true] { + border-top-color: #387ef5; +} + +.tabs-wp .tab-button-text { + margin-top: 5px; + margin-bottom: 5px; +} + +.tabs-wp .tab-button-icon { + min-width: 2.4rem; + font-size: 2.4rem; + color: rgba(140, 140, 140, 0.7); +} + +.tabs-wp .tab-button[aria-selected=true] .tab-button-icon { + color: #387ef5; +} + +.tabs-wp[tabsLayout=icon-bottom] .tab-button { + padding-top: 8px; + padding-bottom: 8px; +} + +.tabs-wp[tabsLayout=icon-right] .tab-button, +.tabs-wp[tabsLayout=icon-left] .tab-button { + padding-bottom: 10px; +} + +.tabs-wp[tabsLayout=icon-right] .tab-button ion-icon, +.tabs-wp[tabsLayout=icon-left] .tab-button ion-icon { + min-width: 24px; +} + +.tabs-wp[tabsLayout=icon-hide] .tab-button, +.tabs-wp[tabsLayout=title-hide] .tab-button, +.tabs-wp .tab-button.icon-only, +.tabs-wp .tab-button.has-title-only { + padding: 6px 10px; +} + +.tabs-wp-primary .tabbar { + background-color: #387ef5; +} + +.tabs-wp-primary .tab-button, +.tabs-wp-primary .tab-button-icon { + color: rgba(255, 255, 255, 0.7); +} + +.tabs-wp-primary .tab-button:hover:not(.disable-hover), +.tabs-wp-primary .tab-button:hover:not(.disable-hover) .tab-button-icon, +.tabs-wp-primary .tab-button[aria-selected=true], +.tabs-wp-primary .tab-button[aria-selected=true] .tab-button-icon { + border-color: #fff; + color: #fff; +} + +.tabs-wp-secondary .tabbar { + background-color: #32db64; +} + +.tabs-wp-secondary .tab-button, +.tabs-wp-secondary .tab-button-icon { + color: rgba(255, 255, 255, 0.7); +} + +.tabs-wp-secondary .tab-button:hover:not(.disable-hover), +.tabs-wp-secondary .tab-button:hover:not(.disable-hover) .tab-button-icon, +.tabs-wp-secondary .tab-button[aria-selected=true], +.tabs-wp-secondary .tab-button[aria-selected=true] .tab-button-icon { + border-color: #fff; + color: #fff; +} + +.tabs-wp-danger .tabbar { + background-color: #f53d3d; +} + +.tabs-wp-danger .tab-button, +.tabs-wp-danger .tab-button-icon { + color: rgba(255, 255, 255, 0.7); +} + +.tabs-wp-danger .tab-button:hover:not(.disable-hover), +.tabs-wp-danger .tab-button:hover:not(.disable-hover) .tab-button-icon, +.tabs-wp-danger .tab-button[aria-selected=true], +.tabs-wp-danger .tab-button[aria-selected=true] .tab-button-icon { + border-color: #fff; + color: #fff; +} + +.tabs-wp-light .tabbar { + background-color: #f4f4f4; +} + +.tabs-wp-light .tab-button, +.tabs-wp-light .tab-button-icon { + color: rgba(0, 0, 0, 0.7); +} + +.tabs-wp-light .tab-button:hover:not(.disable-hover), +.tabs-wp-light .tab-button:hover:not(.disable-hover) .tab-button-icon, +.tabs-wp-light .tab-button[aria-selected=true], +.tabs-wp-light .tab-button[aria-selected=true] .tab-button-icon { + border-color: #000; + color: #000; +} + +.tabs-wp-dark .tabbar { + background-color: #222; +} + +.tabs-wp-dark .tab-button, +.tabs-wp-dark .tab-button-icon { + color: rgba(255, 255, 255, 0.7); +} + +.tabs-wp-dark .tab-button:hover:not(.disable-hover), +.tabs-wp-dark .tab-button:hover:not(.disable-hover) .tab-button-icon, +.tabs-wp-dark .tab-button[aria-selected=true], +.tabs-wp-dark .tab-button[aria-selected=true] .tab-button-icon { + border-color: #fff; + color: #fff; +} + +ion-toast { + position: absolute; + top: 0; + left: 0; + z-index: 1000; + display: block; + width: 100%; + height: 100%; + pointer-events: none; + contain: strict; +} + +.toast-container { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + pointer-events: auto; + contain: content; +} + +.toast-button { + padding: 19px 16px 17px; + font-size: 1.5rem; +} + +.toast-message { + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; +} + +.toast-ios .toast-wrapper { + position: absolute; + right: 10px; + left: 10px; + z-index: 10; + display: block; + margin: auto; + max-width: 700px; + border-radius: 0.65rem; + background: rgba(0, 0, 0, 0.9); +} + +.toast-ios .toast-wrapper.toast-top { + top: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); +} + +.toast-ios .toast-wrapper.toast-bottom { + bottom: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); +} + +.toast-ios .toast-wrapper.toast-middle { + opacity: .01; +} + +.toast-ios .toast-message { + padding: 1.5rem; + font-size: 1.4rem; + color: #fff; +} + +.toast-md .toast-wrapper { + position: absolute; + right: 0; + left: 0; + z-index: 10; + display: block; + margin: auto; + width: 100%; + max-width: 700px; + background: #333; +} + +.toast-md .toast-wrapper.toast-top { + top: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); +} + +.toast-md .toast-wrapper.toast-bottom { + bottom: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); +} + +.toast-md .toast-wrapper.toast-middle { + opacity: .01; +} + +.toast-md .toast-message { + padding: 19px 16px 17px; + font-size: 1.5rem; + color: #fff; +} + +.toast-wp .toast-wrapper { + position: absolute; + right: 0; + left: 0; + z-index: 10; + display: block; + margin: auto; + max-width: 700px; + border-radius: 0; + background: black; +} + +.toast-wp .toast-wrapper.toast-top { + top: 0; + opacity: .01; +} + +.toast-wp .toast-wrapper.toast-bottom { + bottom: 0; + opacity: .01; +} + +.toast-wp .toast-wrapper.toast-middle { + opacity: .01; +} + +.toast-message { + padding: 1.5rem; + font-size: 1.4rem; + color: #fff; +} + +.toast-button { + color: #fff; +} + +.toggle-ios { + position: relative; +} + +.toggle-ios .toggle-icon { + position: relative; + display: block; + width: 51px; + height: 32px; + border-radius: 16px; + background-color: #e6e6e6; + transition: background-color 300ms; + pointer-events: none; +} + +.toggle-ios .toggle-icon::before { + position: absolute; + top: 2px; + right: 2px; + bottom: 2px; + left: 2px; + border-radius: 16px; + background-color: #fff; + content: ""; + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + transition: -webkit-transform 300ms; + transition: transform 300ms; + transition: transform 300ms, -webkit-transform 300ms; +} + +.toggle-ios .toggle-inner { + position: absolute; + top: 2px; + left: 2px; + width: 28px; + height: 28px; + border-radius: 14px; + background-color: #fff; + box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16), 0 3px 1px rgba(0, 0, 0, 0.1); + transition: width 120ms ease-in-out 80ms, left 110ms ease-in-out 80ms, -webkit-transform 300ms; + transition: transform 300ms, width 120ms ease-in-out 80ms, left 110ms ease-in-out 80ms; + transition: transform 300ms, width 120ms ease-in-out 80ms, left 110ms ease-in-out 80ms, -webkit-transform 300ms; +} + +.toggle-ios .toggle-checked { + background-color: #387ef5; +} + +.toggle-ios .toggle-activated::before, +.toggle-ios .toggle-checked::before { + -webkit-transform: scale3d(0, 0, 0); + transform: scale3d(0, 0, 0); +} + +.toggle-ios .toggle-checked .toggle-inner { + -webkit-transform: translate3d(19px, 0, 0); + transform: translate3d(19px, 0, 0); +} + +.toggle-ios .toggle-activated.toggle-checked::before { + -webkit-transform: scale3d(0, 0, 0); + transform: scale3d(0, 0, 0); +} + +.toggle-ios .toggle-activated .toggle-inner { + width: 34px; +} + +.toggle-ios .toggle-activated.toggle-checked .toggle-inner { + left: -4px; +} + +.toggle-ios.toggle-disabled, +.item-ios.item-toggle-disabled ion-label { + opacity: 0.3; + pointer-events: none; +} + +.item-ios .toggle-ios { + margin: 0; + padding: 6px 8px 5px 16px; +} + +.item-ios .toggle-ios[item-left] { + padding: 6px 16px 5px 0; +} + +.toggle-ios-primary .toggle-checked { + background-color: #387ef5; +} + +.toggle-ios-secondary .toggle-checked { + background-color: #32db64; +} + +.toggle-ios-danger .toggle-checked { + background-color: #f53d3d; +} + +.toggle-ios-light .toggle-checked { + background-color: #f4f4f4; +} + +.toggle-ios-dark .toggle-checked { + background-color: #222; +} + +.toggle-md { + position: relative; +} + +.toggle-md .toggle-icon { + position: relative; + display: block; + width: 36px; + height: 14px; + border-radius: 14px; + background-color: #dedede; + transition: background-color 300ms; + pointer-events: none; +} + +.toggle-md .toggle-inner { + position: absolute; + top: -3px; + left: 0; + width: 20px; + height: 20px; + border-radius: 50%; + background-color: #fff; + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + transition-duration: 300ms; + transition-property: background-color, -webkit-transform; + transition-property: transform, background-color; + transition-property: transform, background-color, -webkit-transform; +} + +.toggle-md .toggle-checked { + background-color: #b1cdfb; +} + +.toggle-md .toggle-checked .toggle-inner { + background-color: #387ef5; + -webkit-transform: translate3d(16px, 0, 0); + transform: translate3d(16px, 0, 0); +} + +.toggle-md.toggle-disabled, +.item-md.item-toggle-disabled ion-label { + opacity: 0.3; + pointer-events: none; +} + +.toggle-md.toggle-disabled ion-radio { + opacity: 0.3; +} + +.item-md .toggle-md { + margin: 0; + padding: 12px 8px 12px 16px; + cursor: pointer; +} + +.item-md .toggle-md[item-left] { + padding: 12px 18px 12px 2px; +} + +.item-md.item-toggle ion-label { + margin-left: 0; +} + +.toggle-md-primary .toggle-checked { + background-color: #b1cdfb; +} + +.toggle-md-primary .toggle-checked .toggle-inner { + background-color: #387ef5; +} + +.toggle-md-secondary .toggle-checked { + background-color: #9eeeb6; +} + +.toggle-md-secondary .toggle-checked .toggle-inner { + background-color: #32db64; +} + +.toggle-md-danger .toggle-checked { + background-color: #fbb6b6; +} + +.toggle-md-danger .toggle-checked .toggle-inner { + background-color: #f53d3d; +} + +.toggle-md-light .toggle-checked { + background-color: white; +} + +.toggle-md-light .toggle-checked .toggle-inner { + background-color: #f4f4f4; +} + +.toggle-md-dark .toggle-checked { + background-color: #626262; +} + +.toggle-md-dark .toggle-checked .toggle-inner { + background-color: #222; +} + +.toggle-wp { + position: relative; +} + +.toggle-wp .toggle-icon { + position: relative; + display: block; + width: 40px; + height: 18px; + border: 2px solid #323232; + border-radius: 18px; + background-color: transparent; + pointer-events: none; +} + +.toggle-wp .toggle-inner { + position: absolute; + top: 2px; + left: 2px; + width: 10px; + height: 10px; + border-radius: 50%; + background-color: #323232; + transition-duration: 300ms; + transition-property: background-color, -webkit-transform; + transition-property: transform, background-color; + transition-property: transform, background-color, -webkit-transform; +} + +.toggle-wp .toggle-checked { + border-color: #387ef5; + background-color: #387ef5; +} + +.toggle-wp .toggle-checked .toggle-inner { + background-color: #fff; + -webkit-transform: translate3d(22px, 0, 0); + transform: translate3d(22px, 0, 0); +} + +.toggle-wp.toggle-disabled, +.item-wp.item-toggle-disabled ion-label { + opacity: 0.3; + pointer-events: none; +} + +.toggle-wp.toggle-disabled ion-radio { + opacity: 0.3; +} + +.item-wp .toggle-wp { + margin: 0; + padding: 12px 8px 12px 16px; + cursor: pointer; +} + +.item-wp .toggle-wp[item-left] { + padding: 12px 18px 12px 2px; +} + +.item-wp.item-toggle ion-label { + margin-left: 0; +} + +.toggle-wp-primary .toggle-checked { + border-color: #387ef5; + background-color: #387ef5; +} + +.toggle-wp-primary .toggle-checked .toggle-inner { + background-color: #fff; +} + +.toggle-wp-secondary .toggle-checked { + border-color: #32db64; + background-color: #32db64; +} + +.toggle-wp-secondary .toggle-checked .toggle-inner { + background-color: #fff; +} + +.toggle-wp-danger .toggle-checked { + border-color: #f53d3d; + background-color: #f53d3d; +} + +.toggle-wp-danger .toggle-checked .toggle-inner { + background-color: #fff; +} + +.toggle-wp-light .toggle-checked { + border-color: #f4f4f4; + background-color: #f4f4f4; +} + +.toggle-wp-light .toggle-checked .toggle-inner { + background-color: #000; +} + +.toggle-wp-dark .toggle-checked { + border-color: #222; + background-color: #222; +} + +.toggle-wp-dark .toggle-checked .toggle-inner { + background-color: #fff; +} + +ion-toolbar { + position: relative; + z-index: 10; +} + +.toolbar { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + overflow: hidden; + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + -webkit-justify-content: space-between; + -ms-flex-pack: justify; + justify-content: space-between; + width: 100%; + contain: content; +} + +.toolbar-background { + position: absolute; + top: 0; + left: 0; + z-index: -1; + width: 100%; + height: 100%; + border: 0; + -webkit-transform: translateZ(0); + transform: translateZ(0); + pointer-events: none; + contain: strict; +} + +ion-title { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + -webkit-transform: translateZ(0); + transform: translateZ(0); +} + +.toolbar-title { + display: block; + overflow: hidden; + width: 100%; + text-overflow: ellipsis; + white-space: nowrap; +} + +ion-buttons { + display: block; + margin: 0 .2rem; + -webkit-transform: translateZ(0); + transform: translateZ(0); + pointer-events: none; +} + +ion-buttons button, +ion-buttons a, +ion-buttons input, +ion-buttons textarea, +ion-buttons div { + pointer-events: auto; +} + +.toolbar[transparent] .toolbar-background { + border-color: transparent; + background: transparent; +} + +ion-buttons, +.bar-button-menutoggle { + z-index: 99; + -webkit-transform: translateZ(0); + transform: translateZ(0); +} + +ion-navbar.toolbar { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-transform: translateZ(0); + transform: translateZ(0); +} + +.bar-button { + -moz-appearance: none; + -ms-appearance: none; + -webkit-appearance: none; + appearance: none; + position: relative; + display: inline-block; + margin: 0; + padding: 0; + line-height: 1; + text-align: center; + text-overflow: ellipsis; + text-transform: none; + white-space: nowrap; + cursor: pointer; + vertical-align: top; + vertical-align: -webkit-baseline-middle; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.bar-button::after { + position: absolute; + top: -7px; + right: -2px; + bottom: -6px; + left: -2px; + content: ""; +} + +.bar-button-menutoggle { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; +} + +.back-button { + display: none; +} + +.back-button.show-back-button { + display: inline-block; +} + +.back-button-text { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; +} + +.toolbar-ios { + padding: 4px; + min-height: 44px; +} + +.toolbar-background-ios { + background: #f8f8f8; +} + +.header-ios .toolbar-background-ios, +.footer-ios .toolbar-background-ios { + border-style: solid; + border-color: rgba(0, 0, 0, 0.3); +} + +.header-ios .toolbar-ios:last-child .toolbar-background-ios { + border-width: 0 0 0.55px; +} + +.footer-ios .toolbar-ios:first-child .toolbar-background-ios { + border-width: 0.55px 0 0; +} + +.header-ios[no-border] .toolbar-ios:last-child .toolbar-background-ios { + border-bottom-width: 0; +} + +.footer-ios[no-border] .toolbar-ios:first-child .toolbar-background-ios { + border-top-width: 0; +} + +.toolbar-content-ios { + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + -webkit-order: 4; + -ms-flex-order: 4; + order: 4; + min-width: 0; +} + +.toolbar-title-ios { + font-size: 1.7rem; + font-weight: 600; + text-align: center; + color: #000; + pointer-events: auto; +} + +.toolbar-ios ion-title { + position: absolute; + top: 0; + left: 0; + padding: 0 90px 1px; + width: 100%; + height: 100%; + -webkit-transform: translateZ(0); + transform: translateZ(0); + pointer-events: none; +} + +.bar-buttons-ios { + -webkit-order: 3; + -ms-flex-order: 3; + order: 3; + -webkit-transform: translateZ(0); + transform: translateZ(0); +} + +.bar-buttons-ios[left] { + -webkit-order: 2; + -ms-flex-order: 2; + order: 2; +} + +.bar-buttons-ios[end] { + -webkit-order: 5; + -ms-flex-order: 5; + order: 5; + text-align: right; +} + +.bar-buttons-ios[right] { + -webkit-order: 6; + -ms-flex-order: 6; + order: 6; + text-align: right; +} + +.bar-button-ios { + padding: 0 4px; + height: 32px; + border: 0; + border-radius: 4px; + font-size: 1.7rem; +} + +.bar-button-outline-ios { + border-width: 1px; + border-style: solid; + border-color: #387ef5; + color: #387ef5; + background-color: transparent; +} + +.bar-button-outline-ios:hover:not(.disable-hover) { + opacity: .4; +} + +.bar-button-outline-ios.activated { + color: #fff; + background-color: #387ef5; +} + +.bar-button-solid-ios { + color: #fff; + background-color: #387ef5; +} + +.bar-button-solid-ios:hover:not(.disable-hover) { + color: #fff; + opacity: .4; +} + +.bar-button-solid-ios.activated { + color: #fff; + background-color: #3474e1; + opacity: .4; +} + +.bar-button-ios.bar-button-icon-left ion-icon { + padding-right: .3em; + font-size: 1.4em; + line-height: .67; + pointer-events: none; +} + +.bar-button-ios.bar-button-icon-right ion-icon { + padding-left: .4em; + font-size: 1.4em; + line-height: .67; + pointer-events: none; +} + +.bar-button-ios[icon-only] { + padding: 0; + min-width: .9em; +} + +.bar-button-ios[icon-only] ion-icon { + padding: 0 .1em; + font-size: 1.8em; + line-height: .67; + pointer-events: none; +} + +.back-button-ios { + overflow: visible; + -webkit-order: 0; + -ms-flex-order: 0; + order: 0; + margin: 0; + min-height: 3.2rem; + line-height: 1; + -webkit-transform: translateZ(0); + transform: translateZ(0); +} + +.back-button-icon-ios { + display: inherit; + margin: 0; + margin-top: -1px; + min-width: 18px; + font-size: 3.4rem; +} + +.back-button-text-ios { + letter-spacing: -.01em; +} + +.bar-button-menutoggle-ios { + -webkit-order: 1; + -ms-flex-order: 1; + order: 1; + margin: 0 6px; + padding: 0; + min-width: 36px; +} + +.bar-button-menutoggle-ios ion-icon { + padding: 0 6px; + font-size: 2.8rem; +} + +.bar-button-menutoggle-ios[end], +.bar-button-menutoggle-ios[right] { + -webkit-order: 7; + -ms-flex-order: 7; + order: 7; +} + +.bar-button-default-ios, +.bar-button-default.bar-button-ios-default, +.bar-button-clear-ios-default { + color: #387ef5; + background-color: transparent; +} + +.bar-button-default-ios:hover:not(.disable-hover), +.bar-button-default.bar-button-ios-default:hover:not(.disable-hover), +.bar-button-clear-ios-default:hover:not(.disable-hover) { + color: #387ef5; +} + +.bar-button-default-ios.activated, +.bar-button-default.bar-button-ios-default.activated, +.bar-button-clear-ios-default.activated { + opacity: .4; +} + +.bar-button-clear-ios, +.bar-button-default.bar-button-ios-clear, +.bar-button-clear-ios-clear { + color: #387ef5; + background-color: transparent; +} + +.bar-button-clear-ios:hover:not(.disable-hover), +.bar-button-default.bar-button-ios-clear:hover:not(.disable-hover), +.bar-button-clear-ios-clear:hover:not(.disable-hover) { + color: #387ef5; +} + +.bar-button-clear-ios.activated, +.bar-button-default.bar-button-ios-clear.activated, +.bar-button-clear-ios-clear.activated { + opacity: .4; +} + +.toolbar-ios-primary .toolbar-background-ios { + background: #387ef5; +} + +.toolbar-ios-primary .toolbar-title-ios, +.toolbar-ios-primary .bar-button-clear-ios, +.toolbar-ios-primary .bar-button-default-ios { + color: #fff; +} + +.toolbar-ios-primary .bar-button-primary-ios, +.toolbar-ios-primary .bar-button-default.bar-button-ios-primary, +.toolbar-ios-primary .bar-button-clear-ios-primary { + color: #387ef5; + background-color: transparent; +} + +.toolbar-ios-primary .bar-button-primary-ios:hover:not(.disable-hover), +.toolbar-ios-primary .bar-button-default.bar-button-ios-primary:hover:not(.disable-hover), +.toolbar-ios-primary .bar-button-clear-ios-primary:hover:not(.disable-hover) { + color: #387ef5; +} + +.toolbar-ios-primary .bar-button-primary-ios.activated, +.toolbar-ios-primary .bar-button-default.bar-button-ios-primary.activated, +.toolbar-ios-primary .bar-button-clear-ios-primary.activated { + opacity: .4; +} + +.toolbar-ios-primary .bar-button-outline-ios-primary { + border-color: #387ef5; + color: #387ef5; + background-color: transparent; +} + +.toolbar-ios-primary .bar-button-outline-ios-primary.activated { + color: #fff; + background-color: #387ef5; +} + +.toolbar-ios-primary .bar-button-solid-ios-primary { + color: #fff; + background-color: #387ef5; +} + +.toolbar-ios-primary .bar-button-solid-ios-primary.activated { + color: #fff; + background-color: #3474e1; +} + +.toolbar-ios-primary .bar-button-secondary-ios, +.toolbar-ios-primary .bar-button-default.bar-button-ios-secondary, +.toolbar-ios-primary .bar-button-clear-ios-secondary { + color: #32db64; + background-color: transparent; +} + +.toolbar-ios-primary .bar-button-secondary-ios:hover:not(.disable-hover), +.toolbar-ios-primary .bar-button-default.bar-button-ios-secondary:hover:not(.disable-hover), +.toolbar-ios-primary .bar-button-clear-ios-secondary:hover:not(.disable-hover) { + color: #32db64; +} + +.toolbar-ios-primary .bar-button-secondary-ios.activated, +.toolbar-ios-primary .bar-button-default.bar-button-ios-secondary.activated, +.toolbar-ios-primary .bar-button-clear-ios-secondary.activated { + opacity: .4; +} + +.toolbar-ios-primary .bar-button-outline-ios-secondary { + border-color: #32db64; + color: #32db64; + background-color: transparent; +} + +.toolbar-ios-primary .bar-button-outline-ios-secondary.activated { + color: #fff; + background-color: #32db64; +} + +.toolbar-ios-primary .bar-button-solid-ios-secondary { + color: #fff; + background-color: #32db64; +} + +.toolbar-ios-primary .bar-button-solid-ios-secondary.activated { + color: #fff; + background-color: #2ec95c; +} + +.toolbar-ios-primary .bar-button-danger-ios, +.toolbar-ios-primary .bar-button-default.bar-button-ios-danger, +.toolbar-ios-primary .bar-button-clear-ios-danger { + color: #f53d3d; + background-color: transparent; +} + +.toolbar-ios-primary .bar-button-danger-ios:hover:not(.disable-hover), +.toolbar-ios-primary .bar-button-default.bar-button-ios-danger:hover:not(.disable-hover), +.toolbar-ios-primary .bar-button-clear-ios-danger:hover:not(.disable-hover) { + color: #f53d3d; +} + +.toolbar-ios-primary .bar-button-danger-ios.activated, +.toolbar-ios-primary .bar-button-default.bar-button-ios-danger.activated, +.toolbar-ios-primary .bar-button-clear-ios-danger.activated { + opacity: .4; +} + +.toolbar-ios-primary .bar-button-outline-ios-danger { + border-color: #f53d3d; + color: #f53d3d; + background-color: transparent; +} + +.toolbar-ios-primary .bar-button-outline-ios-danger.activated { + color: #fff; + background-color: #f53d3d; +} + +.toolbar-ios-primary .bar-button-solid-ios-danger { + color: #fff; + background-color: #f53d3d; +} + +.toolbar-ios-primary .bar-button-solid-ios-danger.activated { + color: #fff; + background-color: #e13838; +} + +.toolbar-ios-primary .bar-button-light-ios, +.toolbar-ios-primary .bar-button-default.bar-button-ios-light, +.toolbar-ios-primary .bar-button-clear-ios-light { + color: #f4f4f4; + background-color: transparent; +} + +.toolbar-ios-primary .bar-button-light-ios:hover:not(.disable-hover), +.toolbar-ios-primary .bar-button-default.bar-button-ios-light:hover:not(.disable-hover), +.toolbar-ios-primary .bar-button-clear-ios-light:hover:not(.disable-hover) { + color: #f4f4f4; +} + +.toolbar-ios-primary .bar-button-light-ios.activated, +.toolbar-ios-primary .bar-button-default.bar-button-ios-light.activated, +.toolbar-ios-primary .bar-button-clear-ios-light.activated { + opacity: .4; +} + +.toolbar-ios-primary .bar-button-outline-ios-light { + border-color: #f4f4f4; + color: #f4f4f4; + background-color: transparent; +} + +.toolbar-ios-primary .bar-button-outline-ios-light.activated { + color: #000; + background-color: #f4f4f4; +} + +.toolbar-ios-primary .bar-button-solid-ios-light { + color: #000; + background-color: #f4f4f4; +} + +.toolbar-ios-primary .bar-button-solid-ios-light.activated { + color: #000; + background-color: #e0e0e0; +} + +.toolbar-ios-primary .bar-button-dark-ios, +.toolbar-ios-primary .bar-button-default.bar-button-ios-dark, +.toolbar-ios-primary .bar-button-clear-ios-dark { + color: #222; + background-color: transparent; +} + +.toolbar-ios-primary .bar-button-dark-ios:hover:not(.disable-hover), +.toolbar-ios-primary .bar-button-default.bar-button-ios-dark:hover:not(.disable-hover), +.toolbar-ios-primary .bar-button-clear-ios-dark:hover:not(.disable-hover) { + color: #222; +} + +.toolbar-ios-primary .bar-button-dark-ios.activated, +.toolbar-ios-primary .bar-button-default.bar-button-ios-dark.activated, +.toolbar-ios-primary .bar-button-clear-ios-dark.activated { + opacity: .4; +} + +.toolbar-ios-primary .bar-button-outline-ios-dark { + border-color: #222; + color: #222; + background-color: transparent; +} + +.toolbar-ios-primary .bar-button-outline-ios-dark.activated { + color: #fff; + background-color: #222; +} + +.toolbar-ios-primary .bar-button-solid-ios-dark { + color: #fff; + background-color: #222; +} + +.toolbar-ios-primary .bar-button-solid-ios-dark.activated { + color: #fff; + background-color: #343434; +} + +.bar-button-primary-ios, +.bar-button-default.bar-button-ios-primary, +.bar-button-clear-ios-primary { + color: #387ef5; + background-color: transparent; +} + +.bar-button-primary-ios:hover:not(.disable-hover), +.bar-button-default.bar-button-ios-primary:hover:not(.disable-hover), +.bar-button-clear-ios-primary:hover:not(.disable-hover) { + color: #387ef5; +} + +.bar-button-primary-ios.activated, +.bar-button-default.bar-button-ios-primary.activated, +.bar-button-clear-ios-primary.activated { + opacity: .4; +} + +.bar-button-outline-ios-primary { + border-color: #387ef5; + color: #387ef5; + background-color: transparent; +} + +.bar-button-outline-ios-primary.activated { + color: #fff; + background-color: #387ef5; +} + +.bar-button-solid-ios-primary { + color: #fff; + background-color: #387ef5; +} + +.bar-button-solid-ios-primary.activated { + color: #fff; + background-color: #3474e1; +} + +.toolbar-ios-secondary .toolbar-background-ios { + background: #32db64; +} + +.toolbar-ios-secondary .toolbar-title-ios, +.toolbar-ios-secondary .bar-button-clear-ios, +.toolbar-ios-secondary .bar-button-default-ios { + color: #fff; +} + +.toolbar-ios-secondary .bar-button-primary-ios, +.toolbar-ios-secondary .bar-button-default.bar-button-ios-primary, +.toolbar-ios-secondary .bar-button-clear-ios-primary { + color: #387ef5; + background-color: transparent; +} + +.toolbar-ios-secondary .bar-button-primary-ios:hover:not(.disable-hover), +.toolbar-ios-secondary .bar-button-default.bar-button-ios-primary:hover:not(.disable-hover), +.toolbar-ios-secondary .bar-button-clear-ios-primary:hover:not(.disable-hover) { + color: #387ef5; +} + +.toolbar-ios-secondary .bar-button-primary-ios.activated, +.toolbar-ios-secondary .bar-button-default.bar-button-ios-primary.activated, +.toolbar-ios-secondary .bar-button-clear-ios-primary.activated { + opacity: .4; +} + +.toolbar-ios-secondary .bar-button-outline-ios-primary { + border-color: #387ef5; + color: #387ef5; + background-color: transparent; +} + +.toolbar-ios-secondary .bar-button-outline-ios-primary.activated { + color: #fff; + background-color: #387ef5; +} + +.toolbar-ios-secondary .bar-button-solid-ios-primary { + color: #fff; + background-color: #387ef5; +} + +.toolbar-ios-secondary .bar-button-solid-ios-primary.activated { + color: #fff; + background-color: #3474e1; +} + +.toolbar-ios-secondary .bar-button-secondary-ios, +.toolbar-ios-secondary .bar-button-default.bar-button-ios-secondary, +.toolbar-ios-secondary .bar-button-clear-ios-secondary { + color: #32db64; + background-color: transparent; +} + +.toolbar-ios-secondary .bar-button-secondary-ios:hover:not(.disable-hover), +.toolbar-ios-secondary .bar-button-default.bar-button-ios-secondary:hover:not(.disable-hover), +.toolbar-ios-secondary .bar-button-clear-ios-secondary:hover:not(.disable-hover) { + color: #32db64; +} + +.toolbar-ios-secondary .bar-button-secondary-ios.activated, +.toolbar-ios-secondary .bar-button-default.bar-button-ios-secondary.activated, +.toolbar-ios-secondary .bar-button-clear-ios-secondary.activated { + opacity: .4; +} + +.toolbar-ios-secondary .bar-button-outline-ios-secondary { + border-color: #32db64; + color: #32db64; + background-color: transparent; +} + +.toolbar-ios-secondary .bar-button-outline-ios-secondary.activated { + color: #fff; + background-color: #32db64; +} + +.toolbar-ios-secondary .bar-button-solid-ios-secondary { + color: #fff; + background-color: #32db64; +} + +.toolbar-ios-secondary .bar-button-solid-ios-secondary.activated { + color: #fff; + background-color: #2ec95c; +} + +.toolbar-ios-secondary .bar-button-danger-ios, +.toolbar-ios-secondary .bar-button-default.bar-button-ios-danger, +.toolbar-ios-secondary .bar-button-clear-ios-danger { + color: #f53d3d; + background-color: transparent; +} + +.toolbar-ios-secondary .bar-button-danger-ios:hover:not(.disable-hover), +.toolbar-ios-secondary .bar-button-default.bar-button-ios-danger:hover:not(.disable-hover), +.toolbar-ios-secondary .bar-button-clear-ios-danger:hover:not(.disable-hover) { + color: #f53d3d; +} + +.toolbar-ios-secondary .bar-button-danger-ios.activated, +.toolbar-ios-secondary .bar-button-default.bar-button-ios-danger.activated, +.toolbar-ios-secondary .bar-button-clear-ios-danger.activated { + opacity: .4; +} + +.toolbar-ios-secondary .bar-button-outline-ios-danger { + border-color: #f53d3d; + color: #f53d3d; + background-color: transparent; +} + +.toolbar-ios-secondary .bar-button-outline-ios-danger.activated { + color: #fff; + background-color: #f53d3d; +} + +.toolbar-ios-secondary .bar-button-solid-ios-danger { + color: #fff; + background-color: #f53d3d; +} + +.toolbar-ios-secondary .bar-button-solid-ios-danger.activated { + color: #fff; + background-color: #e13838; +} + +.toolbar-ios-secondary .bar-button-light-ios, +.toolbar-ios-secondary .bar-button-default.bar-button-ios-light, +.toolbar-ios-secondary .bar-button-clear-ios-light { + color: #f4f4f4; + background-color: transparent; +} + +.toolbar-ios-secondary .bar-button-light-ios:hover:not(.disable-hover), +.toolbar-ios-secondary .bar-button-default.bar-button-ios-light:hover:not(.disable-hover), +.toolbar-ios-secondary .bar-button-clear-ios-light:hover:not(.disable-hover) { + color: #f4f4f4; +} + +.toolbar-ios-secondary .bar-button-light-ios.activated, +.toolbar-ios-secondary .bar-button-default.bar-button-ios-light.activated, +.toolbar-ios-secondary .bar-button-clear-ios-light.activated { + opacity: .4; +} + +.toolbar-ios-secondary .bar-button-outline-ios-light { + border-color: #f4f4f4; + color: #f4f4f4; + background-color: transparent; +} + +.toolbar-ios-secondary .bar-button-outline-ios-light.activated { + color: #000; + background-color: #f4f4f4; +} + +.toolbar-ios-secondary .bar-button-solid-ios-light { + color: #000; + background-color: #f4f4f4; +} + +.toolbar-ios-secondary .bar-button-solid-ios-light.activated { + color: #000; + background-color: #e0e0e0; +} + +.toolbar-ios-secondary .bar-button-dark-ios, +.toolbar-ios-secondary .bar-button-default.bar-button-ios-dark, +.toolbar-ios-secondary .bar-button-clear-ios-dark { + color: #222; + background-color: transparent; +} + +.toolbar-ios-secondary .bar-button-dark-ios:hover:not(.disable-hover), +.toolbar-ios-secondary .bar-button-default.bar-button-ios-dark:hover:not(.disable-hover), +.toolbar-ios-secondary .bar-button-clear-ios-dark:hover:not(.disable-hover) { + color: #222; +} + +.toolbar-ios-secondary .bar-button-dark-ios.activated, +.toolbar-ios-secondary .bar-button-default.bar-button-ios-dark.activated, +.toolbar-ios-secondary .bar-button-clear-ios-dark.activated { + opacity: .4; +} + +.toolbar-ios-secondary .bar-button-outline-ios-dark { + border-color: #222; + color: #222; + background-color: transparent; +} + +.toolbar-ios-secondary .bar-button-outline-ios-dark.activated { + color: #fff; + background-color: #222; +} + +.toolbar-ios-secondary .bar-button-solid-ios-dark { + color: #fff; + background-color: #222; +} + +.toolbar-ios-secondary .bar-button-solid-ios-dark.activated { + color: #fff; + background-color: #343434; +} + +.bar-button-secondary-ios, +.bar-button-default.bar-button-ios-secondary, +.bar-button-clear-ios-secondary { + color: #32db64; + background-color: transparent; +} + +.bar-button-secondary-ios:hover:not(.disable-hover), +.bar-button-default.bar-button-ios-secondary:hover:not(.disable-hover), +.bar-button-clear-ios-secondary:hover:not(.disable-hover) { + color: #32db64; +} + +.bar-button-secondary-ios.activated, +.bar-button-default.bar-button-ios-secondary.activated, +.bar-button-clear-ios-secondary.activated { + opacity: .4; +} + +.bar-button-outline-ios-secondary { + border-color: #32db64; + color: #32db64; + background-color: transparent; +} + +.bar-button-outline-ios-secondary.activated { + color: #fff; + background-color: #32db64; +} + +.bar-button-solid-ios-secondary { + color: #fff; + background-color: #32db64; +} + +.bar-button-solid-ios-secondary.activated { + color: #fff; + background-color: #2ec95c; +} + +.toolbar-ios-danger .toolbar-background-ios { + background: #f53d3d; +} + +.toolbar-ios-danger .toolbar-title-ios, +.toolbar-ios-danger .bar-button-clear-ios, +.toolbar-ios-danger .bar-button-default-ios { + color: #fff; +} + +.toolbar-ios-danger .bar-button-primary-ios, +.toolbar-ios-danger .bar-button-default.bar-button-ios-primary, +.toolbar-ios-danger .bar-button-clear-ios-primary { + color: #387ef5; + background-color: transparent; +} + +.toolbar-ios-danger .bar-button-primary-ios:hover:not(.disable-hover), +.toolbar-ios-danger .bar-button-default.bar-button-ios-primary:hover:not(.disable-hover), +.toolbar-ios-danger .bar-button-clear-ios-primary:hover:not(.disable-hover) { + color: #387ef5; +} + +.toolbar-ios-danger .bar-button-primary-ios.activated, +.toolbar-ios-danger .bar-button-default.bar-button-ios-primary.activated, +.toolbar-ios-danger .bar-button-clear-ios-primary.activated { + opacity: .4; +} + +.toolbar-ios-danger .bar-button-outline-ios-primary { + border-color: #387ef5; + color: #387ef5; + background-color: transparent; +} + +.toolbar-ios-danger .bar-button-outline-ios-primary.activated { + color: #fff; + background-color: #387ef5; +} + +.toolbar-ios-danger .bar-button-solid-ios-primary { + color: #fff; + background-color: #387ef5; +} + +.toolbar-ios-danger .bar-button-solid-ios-primary.activated { + color: #fff; + background-color: #3474e1; +} + +.toolbar-ios-danger .bar-button-secondary-ios, +.toolbar-ios-danger .bar-button-default.bar-button-ios-secondary, +.toolbar-ios-danger .bar-button-clear-ios-secondary { + color: #32db64; + background-color: transparent; +} + +.toolbar-ios-danger .bar-button-secondary-ios:hover:not(.disable-hover), +.toolbar-ios-danger .bar-button-default.bar-button-ios-secondary:hover:not(.disable-hover), +.toolbar-ios-danger .bar-button-clear-ios-secondary:hover:not(.disable-hover) { + color: #32db64; +} + +.toolbar-ios-danger .bar-button-secondary-ios.activated, +.toolbar-ios-danger .bar-button-default.bar-button-ios-secondary.activated, +.toolbar-ios-danger .bar-button-clear-ios-secondary.activated { + opacity: .4; +} + +.toolbar-ios-danger .bar-button-outline-ios-secondary { + border-color: #32db64; + color: #32db64; + background-color: transparent; +} + +.toolbar-ios-danger .bar-button-outline-ios-secondary.activated { + color: #fff; + background-color: #32db64; +} + +.toolbar-ios-danger .bar-button-solid-ios-secondary { + color: #fff; + background-color: #32db64; +} + +.toolbar-ios-danger .bar-button-solid-ios-secondary.activated { + color: #fff; + background-color: #2ec95c; +} + +.toolbar-ios-danger .bar-button-danger-ios, +.toolbar-ios-danger .bar-button-default.bar-button-ios-danger, +.toolbar-ios-danger .bar-button-clear-ios-danger { + color: #f53d3d; + background-color: transparent; +} + +.toolbar-ios-danger .bar-button-danger-ios:hover:not(.disable-hover), +.toolbar-ios-danger .bar-button-default.bar-button-ios-danger:hover:not(.disable-hover), +.toolbar-ios-danger .bar-button-clear-ios-danger:hover:not(.disable-hover) { + color: #f53d3d; +} + +.toolbar-ios-danger .bar-button-danger-ios.activated, +.toolbar-ios-danger .bar-button-default.bar-button-ios-danger.activated, +.toolbar-ios-danger .bar-button-clear-ios-danger.activated { + opacity: .4; +} + +.toolbar-ios-danger .bar-button-outline-ios-danger { + border-color: #f53d3d; + color: #f53d3d; + background-color: transparent; +} + +.toolbar-ios-danger .bar-button-outline-ios-danger.activated { + color: #fff; + background-color: #f53d3d; +} + +.toolbar-ios-danger .bar-button-solid-ios-danger { + color: #fff; + background-color: #f53d3d; +} + +.toolbar-ios-danger .bar-button-solid-ios-danger.activated { + color: #fff; + background-color: #e13838; +} + +.toolbar-ios-danger .bar-button-light-ios, +.toolbar-ios-danger .bar-button-default.bar-button-ios-light, +.toolbar-ios-danger .bar-button-clear-ios-light { + color: #f4f4f4; + background-color: transparent; +} + +.toolbar-ios-danger .bar-button-light-ios:hover:not(.disable-hover), +.toolbar-ios-danger .bar-button-default.bar-button-ios-light:hover:not(.disable-hover), +.toolbar-ios-danger .bar-button-clear-ios-light:hover:not(.disable-hover) { + color: #f4f4f4; +} + +.toolbar-ios-danger .bar-button-light-ios.activated, +.toolbar-ios-danger .bar-button-default.bar-button-ios-light.activated, +.toolbar-ios-danger .bar-button-clear-ios-light.activated { + opacity: .4; +} + +.toolbar-ios-danger .bar-button-outline-ios-light { + border-color: #f4f4f4; + color: #f4f4f4; + background-color: transparent; +} + +.toolbar-ios-danger .bar-button-outline-ios-light.activated { + color: #000; + background-color: #f4f4f4; +} + +.toolbar-ios-danger .bar-button-solid-ios-light { + color: #000; + background-color: #f4f4f4; +} + +.toolbar-ios-danger .bar-button-solid-ios-light.activated { + color: #000; + background-color: #e0e0e0; +} + +.toolbar-ios-danger .bar-button-dark-ios, +.toolbar-ios-danger .bar-button-default.bar-button-ios-dark, +.toolbar-ios-danger .bar-button-clear-ios-dark { + color: #222; + background-color: transparent; +} + +.toolbar-ios-danger .bar-button-dark-ios:hover:not(.disable-hover), +.toolbar-ios-danger .bar-button-default.bar-button-ios-dark:hover:not(.disable-hover), +.toolbar-ios-danger .bar-button-clear-ios-dark:hover:not(.disable-hover) { + color: #222; +} + +.toolbar-ios-danger .bar-button-dark-ios.activated, +.toolbar-ios-danger .bar-button-default.bar-button-ios-dark.activated, +.toolbar-ios-danger .bar-button-clear-ios-dark.activated { + opacity: .4; +} + +.toolbar-ios-danger .bar-button-outline-ios-dark { + border-color: #222; + color: #222; + background-color: transparent; +} + +.toolbar-ios-danger .bar-button-outline-ios-dark.activated { + color: #fff; + background-color: #222; +} + +.toolbar-ios-danger .bar-button-solid-ios-dark { + color: #fff; + background-color: #222; +} + +.toolbar-ios-danger .bar-button-solid-ios-dark.activated { + color: #fff; + background-color: #343434; +} + +.bar-button-danger-ios, +.bar-button-default.bar-button-ios-danger, +.bar-button-clear-ios-danger { + color: #f53d3d; + background-color: transparent; +} + +.bar-button-danger-ios:hover:not(.disable-hover), +.bar-button-default.bar-button-ios-danger:hover:not(.disable-hover), +.bar-button-clear-ios-danger:hover:not(.disable-hover) { + color: #f53d3d; +} + +.bar-button-danger-ios.activated, +.bar-button-default.bar-button-ios-danger.activated, +.bar-button-clear-ios-danger.activated { + opacity: .4; +} + +.bar-button-outline-ios-danger { + border-color: #f53d3d; + color: #f53d3d; + background-color: transparent; +} + +.bar-button-outline-ios-danger.activated { + color: #fff; + background-color: #f53d3d; +} + +.bar-button-solid-ios-danger { + color: #fff; + background-color: #f53d3d; +} + +.bar-button-solid-ios-danger.activated { + color: #fff; + background-color: #e13838; +} + +.toolbar-ios-light .toolbar-background-ios { + background: #f4f4f4; +} + +.toolbar-ios-light .toolbar-title-ios, +.toolbar-ios-light .bar-button-clear-ios, +.toolbar-ios-light .bar-button-default-ios { + color: #000; +} + +.toolbar-ios-light .bar-button-primary-ios, +.toolbar-ios-light .bar-button-default.bar-button-ios-primary, +.toolbar-ios-light .bar-button-clear-ios-primary { + color: #387ef5; + background-color: transparent; +} + +.toolbar-ios-light .bar-button-primary-ios:hover:not(.disable-hover), +.toolbar-ios-light .bar-button-default.bar-button-ios-primary:hover:not(.disable-hover), +.toolbar-ios-light .bar-button-clear-ios-primary:hover:not(.disable-hover) { + color: #387ef5; +} + +.toolbar-ios-light .bar-button-primary-ios.activated, +.toolbar-ios-light .bar-button-default.bar-button-ios-primary.activated, +.toolbar-ios-light .bar-button-clear-ios-primary.activated { + opacity: .4; +} + +.toolbar-ios-light .bar-button-outline-ios-primary { + border-color: #387ef5; + color: #387ef5; + background-color: transparent; +} + +.toolbar-ios-light .bar-button-outline-ios-primary.activated { + color: #fff; + background-color: #387ef5; +} + +.toolbar-ios-light .bar-button-solid-ios-primary { + color: #fff; + background-color: #387ef5; +} + +.toolbar-ios-light .bar-button-solid-ios-primary.activated { + color: #fff; + background-color: #3474e1; +} + +.toolbar-ios-light .bar-button-secondary-ios, +.toolbar-ios-light .bar-button-default.bar-button-ios-secondary, +.toolbar-ios-light .bar-button-clear-ios-secondary { + color: #32db64; + background-color: transparent; +} + +.toolbar-ios-light .bar-button-secondary-ios:hover:not(.disable-hover), +.toolbar-ios-light .bar-button-default.bar-button-ios-secondary:hover:not(.disable-hover), +.toolbar-ios-light .bar-button-clear-ios-secondary:hover:not(.disable-hover) { + color: #32db64; +} + +.toolbar-ios-light .bar-button-secondary-ios.activated, +.toolbar-ios-light .bar-button-default.bar-button-ios-secondary.activated, +.toolbar-ios-light .bar-button-clear-ios-secondary.activated { + opacity: .4; +} + +.toolbar-ios-light .bar-button-outline-ios-secondary { + border-color: #32db64; + color: #32db64; + background-color: transparent; +} + +.toolbar-ios-light .bar-button-outline-ios-secondary.activated { + color: #fff; + background-color: #32db64; +} + +.toolbar-ios-light .bar-button-solid-ios-secondary { + color: #fff; + background-color: #32db64; +} + +.toolbar-ios-light .bar-button-solid-ios-secondary.activated { + color: #fff; + background-color: #2ec95c; +} + +.toolbar-ios-light .bar-button-danger-ios, +.toolbar-ios-light .bar-button-default.bar-button-ios-danger, +.toolbar-ios-light .bar-button-clear-ios-danger { + color: #f53d3d; + background-color: transparent; +} + +.toolbar-ios-light .bar-button-danger-ios:hover:not(.disable-hover), +.toolbar-ios-light .bar-button-default.bar-button-ios-danger:hover:not(.disable-hover), +.toolbar-ios-light .bar-button-clear-ios-danger:hover:not(.disable-hover) { + color: #f53d3d; +} + +.toolbar-ios-light .bar-button-danger-ios.activated, +.toolbar-ios-light .bar-button-default.bar-button-ios-danger.activated, +.toolbar-ios-light .bar-button-clear-ios-danger.activated { + opacity: .4; +} + +.toolbar-ios-light .bar-button-outline-ios-danger { + border-color: #f53d3d; + color: #f53d3d; + background-color: transparent; +} + +.toolbar-ios-light .bar-button-outline-ios-danger.activated { + color: #fff; + background-color: #f53d3d; +} + +.toolbar-ios-light .bar-button-solid-ios-danger { + color: #fff; + background-color: #f53d3d; +} + +.toolbar-ios-light .bar-button-solid-ios-danger.activated { + color: #fff; + background-color: #e13838; +} + +.toolbar-ios-light .bar-button-light-ios, +.toolbar-ios-light .bar-button-default.bar-button-ios-light, +.toolbar-ios-light .bar-button-clear-ios-light { + color: #f4f4f4; + background-color: transparent; +} + +.toolbar-ios-light .bar-button-light-ios:hover:not(.disable-hover), +.toolbar-ios-light .bar-button-default.bar-button-ios-light:hover:not(.disable-hover), +.toolbar-ios-light .bar-button-clear-ios-light:hover:not(.disable-hover) { + color: #f4f4f4; +} + +.toolbar-ios-light .bar-button-light-ios.activated, +.toolbar-ios-light .bar-button-default.bar-button-ios-light.activated, +.toolbar-ios-light .bar-button-clear-ios-light.activated { + opacity: .4; +} + +.toolbar-ios-light .bar-button-outline-ios-light { + border-color: #f4f4f4; + color: #f4f4f4; + background-color: transparent; +} + +.toolbar-ios-light .bar-button-outline-ios-light.activated { + color: #000; + background-color: #f4f4f4; +} + +.toolbar-ios-light .bar-button-solid-ios-light { + color: #000; + background-color: #f4f4f4; +} + +.toolbar-ios-light .bar-button-solid-ios-light.activated { + color: #000; + background-color: #e0e0e0; +} + +.toolbar-ios-light .bar-button-dark-ios, +.toolbar-ios-light .bar-button-default.bar-button-ios-dark, +.toolbar-ios-light .bar-button-clear-ios-dark { + color: #222; + background-color: transparent; +} + +.toolbar-ios-light .bar-button-dark-ios:hover:not(.disable-hover), +.toolbar-ios-light .bar-button-default.bar-button-ios-dark:hover:not(.disable-hover), +.toolbar-ios-light .bar-button-clear-ios-dark:hover:not(.disable-hover) { + color: #222; +} + +.toolbar-ios-light .bar-button-dark-ios.activated, +.toolbar-ios-light .bar-button-default.bar-button-ios-dark.activated, +.toolbar-ios-light .bar-button-clear-ios-dark.activated { + opacity: .4; +} + +.toolbar-ios-light .bar-button-outline-ios-dark { + border-color: #222; + color: #222; + background-color: transparent; +} + +.toolbar-ios-light .bar-button-outline-ios-dark.activated { + color: #fff; + background-color: #222; +} + +.toolbar-ios-light .bar-button-solid-ios-dark { + color: #fff; + background-color: #222; +} + +.toolbar-ios-light .bar-button-solid-ios-dark.activated { + color: #fff; + background-color: #343434; +} + +.bar-button-light-ios, +.bar-button-default.bar-button-ios-light, +.bar-button-clear-ios-light { + color: #f4f4f4; + background-color: transparent; +} + +.bar-button-light-ios:hover:not(.disable-hover), +.bar-button-default.bar-button-ios-light:hover:not(.disable-hover), +.bar-button-clear-ios-light:hover:not(.disable-hover) { + color: #f4f4f4; +} + +.bar-button-light-ios.activated, +.bar-button-default.bar-button-ios-light.activated, +.bar-button-clear-ios-light.activated { + opacity: .4; +} + +.bar-button-outline-ios-light { + border-color: #f4f4f4; + color: #f4f4f4; + background-color: transparent; +} + +.bar-button-outline-ios-light.activated { + color: #000; + background-color: #f4f4f4; +} + +.bar-button-solid-ios-light { + color: #000; + background-color: #f4f4f4; +} + +.bar-button-solid-ios-light.activated { + color: #000; + background-color: #e0e0e0; +} + +.toolbar-ios-dark .toolbar-background-ios { + background: #222; +} + +.toolbar-ios-dark .toolbar-title-ios, +.toolbar-ios-dark .bar-button-clear-ios, +.toolbar-ios-dark .bar-button-default-ios { + color: #fff; +} + +.toolbar-ios-dark .bar-button-primary-ios, +.toolbar-ios-dark .bar-button-default.bar-button-ios-primary, +.toolbar-ios-dark .bar-button-clear-ios-primary { + color: #387ef5; + background-color: transparent; +} + +.toolbar-ios-dark .bar-button-primary-ios:hover:not(.disable-hover), +.toolbar-ios-dark .bar-button-default.bar-button-ios-primary:hover:not(.disable-hover), +.toolbar-ios-dark .bar-button-clear-ios-primary:hover:not(.disable-hover) { + color: #387ef5; +} + +.toolbar-ios-dark .bar-button-primary-ios.activated, +.toolbar-ios-dark .bar-button-default.bar-button-ios-primary.activated, +.toolbar-ios-dark .bar-button-clear-ios-primary.activated { + opacity: .4; +} + +.toolbar-ios-dark .bar-button-outline-ios-primary { + border-color: #387ef5; + color: #387ef5; + background-color: transparent; +} + +.toolbar-ios-dark .bar-button-outline-ios-primary.activated { + color: #fff; + background-color: #387ef5; +} + +.toolbar-ios-dark .bar-button-solid-ios-primary { + color: #fff; + background-color: #387ef5; +} + +.toolbar-ios-dark .bar-button-solid-ios-primary.activated { + color: #fff; + background-color: #3474e1; +} + +.toolbar-ios-dark .bar-button-secondary-ios, +.toolbar-ios-dark .bar-button-default.bar-button-ios-secondary, +.toolbar-ios-dark .bar-button-clear-ios-secondary { + color: #32db64; + background-color: transparent; +} + +.toolbar-ios-dark .bar-button-secondary-ios:hover:not(.disable-hover), +.toolbar-ios-dark .bar-button-default.bar-button-ios-secondary:hover:not(.disable-hover), +.toolbar-ios-dark .bar-button-clear-ios-secondary:hover:not(.disable-hover) { + color: #32db64; +} + +.toolbar-ios-dark .bar-button-secondary-ios.activated, +.toolbar-ios-dark .bar-button-default.bar-button-ios-secondary.activated, +.toolbar-ios-dark .bar-button-clear-ios-secondary.activated { + opacity: .4; +} + +.toolbar-ios-dark .bar-button-outline-ios-secondary { + border-color: #32db64; + color: #32db64; + background-color: transparent; +} + +.toolbar-ios-dark .bar-button-outline-ios-secondary.activated { + color: #fff; + background-color: #32db64; +} + +.toolbar-ios-dark .bar-button-solid-ios-secondary { + color: #fff; + background-color: #32db64; +} + +.toolbar-ios-dark .bar-button-solid-ios-secondary.activated { + color: #fff; + background-color: #2ec95c; +} + +.toolbar-ios-dark .bar-button-danger-ios, +.toolbar-ios-dark .bar-button-default.bar-button-ios-danger, +.toolbar-ios-dark .bar-button-clear-ios-danger { + color: #f53d3d; + background-color: transparent; +} + +.toolbar-ios-dark .bar-button-danger-ios:hover:not(.disable-hover), +.toolbar-ios-dark .bar-button-default.bar-button-ios-danger:hover:not(.disable-hover), +.toolbar-ios-dark .bar-button-clear-ios-danger:hover:not(.disable-hover) { + color: #f53d3d; +} + +.toolbar-ios-dark .bar-button-danger-ios.activated, +.toolbar-ios-dark .bar-button-default.bar-button-ios-danger.activated, +.toolbar-ios-dark .bar-button-clear-ios-danger.activated { + opacity: .4; +} + +.toolbar-ios-dark .bar-button-outline-ios-danger { + border-color: #f53d3d; + color: #f53d3d; + background-color: transparent; +} + +.toolbar-ios-dark .bar-button-outline-ios-danger.activated { + color: #fff; + background-color: #f53d3d; +} + +.toolbar-ios-dark .bar-button-solid-ios-danger { + color: #fff; + background-color: #f53d3d; +} + +.toolbar-ios-dark .bar-button-solid-ios-danger.activated { + color: #fff; + background-color: #e13838; +} + +.toolbar-ios-dark .bar-button-light-ios, +.toolbar-ios-dark .bar-button-default.bar-button-ios-light, +.toolbar-ios-dark .bar-button-clear-ios-light { + color: #f4f4f4; + background-color: transparent; +} + +.toolbar-ios-dark .bar-button-light-ios:hover:not(.disable-hover), +.toolbar-ios-dark .bar-button-default.bar-button-ios-light:hover:not(.disable-hover), +.toolbar-ios-dark .bar-button-clear-ios-light:hover:not(.disable-hover) { + color: #f4f4f4; +} + +.toolbar-ios-dark .bar-button-light-ios.activated, +.toolbar-ios-dark .bar-button-default.bar-button-ios-light.activated, +.toolbar-ios-dark .bar-button-clear-ios-light.activated { + opacity: .4; +} + +.toolbar-ios-dark .bar-button-outline-ios-light { + border-color: #f4f4f4; + color: #f4f4f4; + background-color: transparent; +} + +.toolbar-ios-dark .bar-button-outline-ios-light.activated { + color: #000; + background-color: #f4f4f4; +} + +.toolbar-ios-dark .bar-button-solid-ios-light { + color: #000; + background-color: #f4f4f4; +} + +.toolbar-ios-dark .bar-button-solid-ios-light.activated { + color: #000; + background-color: #e0e0e0; +} + +.toolbar-ios-dark .bar-button-dark-ios, +.toolbar-ios-dark .bar-button-default.bar-button-ios-dark, +.toolbar-ios-dark .bar-button-clear-ios-dark { + color: #222; + background-color: transparent; +} + +.toolbar-ios-dark .bar-button-dark-ios:hover:not(.disable-hover), +.toolbar-ios-dark .bar-button-default.bar-button-ios-dark:hover:not(.disable-hover), +.toolbar-ios-dark .bar-button-clear-ios-dark:hover:not(.disable-hover) { + color: #222; +} + +.toolbar-ios-dark .bar-button-dark-ios.activated, +.toolbar-ios-dark .bar-button-default.bar-button-ios-dark.activated, +.toolbar-ios-dark .bar-button-clear-ios-dark.activated { + opacity: .4; +} + +.toolbar-ios-dark .bar-button-outline-ios-dark { + border-color: #222; + color: #222; + background-color: transparent; +} + +.toolbar-ios-dark .bar-button-outline-ios-dark.activated { + color: #fff; + background-color: #222; +} + +.toolbar-ios-dark .bar-button-solid-ios-dark { + color: #fff; + background-color: #222; +} + +.toolbar-ios-dark .bar-button-solid-ios-dark.activated { + color: #fff; + background-color: #343434; +} + +.bar-button-dark-ios, +.bar-button-default.bar-button-ios-dark, +.bar-button-clear-ios-dark { + color: #222; + background-color: transparent; +} + +.bar-button-dark-ios:hover:not(.disable-hover), +.bar-button-default.bar-button-ios-dark:hover:not(.disable-hover), +.bar-button-clear-ios-dark:hover:not(.disable-hover) { + color: #222; +} + +.bar-button-dark-ios.activated, +.bar-button-default.bar-button-ios-dark.activated, +.bar-button-clear-ios-dark.activated { + opacity: .4; +} + +.bar-button-outline-ios-dark { + border-color: #222; + color: #222; + background-color: transparent; +} + +.bar-button-outline-ios-dark.activated { + color: #fff; + background-color: #222; +} + +.bar-button-solid-ios-dark { + color: #fff; + background-color: #222; +} + +.bar-button-solid-ios-dark.activated { + color: #fff; + background-color: #343434; +} + +.bar-button-strong-ios { + font-weight: 600; +} + +.toolbar-md { + padding: 4px; + min-height: 56px; +} + +.toolbar-background-md { + border-color: #b2b2b2; + background: #f8f8f8; +} + +.header-md::after, +.tabs-md[tabsPlacement="top"] > .tabbar::after, +.footer-md::before, +.tabs-md[tabsPlacement="bottom"] > .tabbar::before { + position: absolute; + bottom: -5px; + left: 0; + width: 100%; + height: 5px; + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAHBAMAAADzDtBxAAAAD1BMVEUAAAAAAAAAAAAAAAAAAABPDueNAAAABXRSTlMUCS0gBIh/TXEAAAAaSURBVAjXYxCEAgY4UIICBmMogMsgFLtAAQCNSwXZKOdPxgAAAABJRU5ErkJggg==); + background-repeat: repeat-x; + background-position: 0 -2px; + content: ""; +} + +.footer-md::before, +.tabs-md[tabsPlacement="bottom"] > .tabbar::before { + top: -2px; + bottom: auto; + height: 2px; + background-position: 0 0; +} + +.header-md[no-border]::after, +.footer-md[no-border]::before, +.tabs-md[tabsPlacement="top"][no-border] > .tabbar::after, +.tabs-md[tabsPlacement="bottom"][no-border] > .tabbar::before { + display: none; +} + +.toolbar-content-md { + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + -webkit-order: 3; + -ms-flex-order: 3; + order: 3; + min-width: 0; + max-width: 100%; +} + +.toolbar-title-md { + padding: 0 12px; + font-size: 2rem; + font-weight: 500; + color: #424242; +} + +.bar-buttons-md { + -webkit-order: 4; + -ms-flex-order: 4; + order: 4; + -webkit-transform: translateZ(0); + transform: translateZ(0); +} + +.bar-buttons-md[left] { + -webkit-order: 2; + -ms-flex-order: 2; + order: 2; +} + +.bar-button-md:first-child { + margin-left: 0; +} + +.bar-buttons-md[end] { + -webkit-order: 5; + -ms-flex-order: 5; + order: 5; + text-align: right; +} + +.bar-buttons-md[right] { + -webkit-order: 6; + -ms-flex-order: 6; + order: 6; + text-align: right; +} + +.bar-button-md { + margin-top: 0; + margin-right: .2rem; + margin-bottom: 0; + margin-left: .2rem; + padding: 0 5px; + height: 32px; + border: 0; + border-radius: 2px; + font-size: 1.4rem; + font-weight: 500; + text-transform: uppercase; +} + +.bar-button-solid-md, +.bar-button-outline-md { + overflow: hidden; +} + +.bar-button-outline-md { + border-width: 1px; + border-style: solid; + border-color: #424242; + color: #424242; + background-color: transparent; +} + +.bar-button-outline-md:hover:not(.disable-hover) { + opacity: .4; +} + +.bar-button-outline-md.activated { + background-color: transparent; +} + +.bar-button-outline-md .button-effect { + background-color: #424242; +} + +.bar-button-solid-md { + color: #fff; + background-color: #424242; +} + +.bar-button-solid-md:hover:not(.disable-hover) { + color: #fff; +} + +.bar-button-solid-md.activated { + color: #fff; + background-color: #515151; +} + +.bar-button-md.bar-button-icon-left ion-icon { + padding-right: .3em; + font-size: 1.4em; + line-height: .67; + pointer-events: none; +} + +.bar-button-md.bar-button-icon-right ion-icon { + padding-left: .4em; + font-size: 1.4em; + line-height: .67; + pointer-events: none; +} + +.bar-button-md[icon-only] { + padding: 0; +} + +.bar-button-md[icon-only] ion-icon { + padding: 0 .1em; + min-width: 28px; + font-size: 1.8em; + line-height: .67; + pointer-events: none; +} + +.back-button-md { + margin: 0 6px; + min-width: 44px; + box-shadow: none; +} + +.back-button-icon-md { + margin: 0; + padding: 0 6px; + font-size: 2.4rem; + font-weight: normal; + text-align: left; +} + +.bar-button-menutoggle-md { + -webkit-order: 1; + -ms-flex-order: 1; + order: 1; + margin: 0 6px; + padding: 0 2px; + min-width: 44px; +} + +.bar-button-menutoggle-md ion-icon { + padding: 0 6px; + font-size: 2.4rem; +} + +.bar-button-menutoggle-md[end], +.bar-button-menutoggle-md[right] { + -webkit-order: 7; + -ms-flex-order: 7; + order: 7; + margin: 0 2px; + min-width: 28px; +} + +.bar-button-default-md, +.bar-button-clear-md-default, +.bar-button-md-default { + color: #424242; + background-color: transparent; +} + +.bar-button-default-md:hover:not(.disable-hover), +.bar-button-clear-md-default:hover:not(.disable-hover), +.bar-button-md-default:hover:not(.disable-hover) { + color: #424242; +} + +.bar-button-clear-md, +.bar-button-clear-md-clear, +.bar-button-md-clear { + color: #424242; + background-color: transparent; +} + +.bar-button-clear-md:hover:not(.disable-hover), +.bar-button-clear-md-clear:hover:not(.disable-hover), +.bar-button-md-clear:hover:not(.disable-hover) { + color: #424242; +} + +.toolbar-md-primary .toolbar-background-md { + background: #387ef5; +} + +.toolbar-md-primary .bar-button-clear-md, +.toolbar-md-primary .bar-button-default-md, +.toolbar-md-primary .bar-button-outline-md, +.toolbar-md-primary .toolbar-title-md { + color: #fff; +} + +.toolbar-md-primary .bar-button-clear-md .button-effect, +.toolbar-md-primary .bar-button-default-md .button-effect, +.toolbar-md-primary .bar-button-outline-md .button-effect { + background-color: #fff; +} + +.toolbar-md-primary .bar-button-outline-md { + border-color: #fff; +} + +.toolbar-md-primary .bar-button-primary-md, +.toolbar-md-primary .bar-button-clear-md-primary, +.toolbar-md-primary .bar-button-md-primary { + color: #387ef5; + background-color: transparent; +} + +.toolbar-md-primary .bar-button-primary-md:hover:not(.disable-hover), +.toolbar-md-primary .bar-button-clear-md-primary:hover:not(.disable-hover), +.toolbar-md-primary .bar-button-md-primary:hover:not(.disable-hover) { + color: #387ef5; +} + +.toolbar-md-primary .bar-button-outline-md-primary { + border-color: #3474e1; + color: #3474e1; + background-color: transparent; +} + +.toolbar-md-primary .bar-button-outline-md-primary.activated { + background-color: transparent; +} + +.toolbar-md-primary .bar-button-outline-md-primary .button-effect { + background-color: #3474e1; +} + +.toolbar-md-primary .bar-button-solid-md-primary { + color: #fff; + background-color: #387ef5; +} + +.toolbar-md-primary .bar-button-solid-md-primary.activated { + color: #fff; + background-color: #3474e1; +} + +.toolbar-md-primary .bar-button-secondary-md, +.toolbar-md-primary .bar-button-clear-md-secondary, +.toolbar-md-primary .bar-button-md-secondary { + color: #32db64; + background-color: transparent; +} + +.toolbar-md-primary .bar-button-secondary-md:hover:not(.disable-hover), +.toolbar-md-primary .bar-button-clear-md-secondary:hover:not(.disable-hover), +.toolbar-md-primary .bar-button-md-secondary:hover:not(.disable-hover) { + color: #32db64; +} + +.toolbar-md-primary .bar-button-outline-md-secondary { + border-color: #2ec95c; + color: #2ec95c; + background-color: transparent; +} + +.toolbar-md-primary .bar-button-outline-md-secondary.activated { + background-color: transparent; +} + +.toolbar-md-primary .bar-button-outline-md-secondary .button-effect { + background-color: #2ec95c; +} + +.toolbar-md-primary .bar-button-solid-md-secondary { + color: #fff; + background-color: #32db64; +} + +.toolbar-md-primary .bar-button-solid-md-secondary.activated { + color: #fff; + background-color: #2ec95c; +} + +.toolbar-md-primary .bar-button-danger-md, +.toolbar-md-primary .bar-button-clear-md-danger, +.toolbar-md-primary .bar-button-md-danger { + color: #f53d3d; + background-color: transparent; +} + +.toolbar-md-primary .bar-button-danger-md:hover:not(.disable-hover), +.toolbar-md-primary .bar-button-clear-md-danger:hover:not(.disable-hover), +.toolbar-md-primary .bar-button-md-danger:hover:not(.disable-hover) { + color: #f53d3d; +} + +.toolbar-md-primary .bar-button-outline-md-danger { + border-color: #e13838; + color: #e13838; + background-color: transparent; +} + +.toolbar-md-primary .bar-button-outline-md-danger.activated { + background-color: transparent; +} + +.toolbar-md-primary .bar-button-outline-md-danger .button-effect { + background-color: #e13838; +} + +.toolbar-md-primary .bar-button-solid-md-danger { + color: #fff; + background-color: #f53d3d; +} + +.toolbar-md-primary .bar-button-solid-md-danger.activated { + color: #fff; + background-color: #e13838; +} + +.toolbar-md-primary .bar-button-light-md, +.toolbar-md-primary .bar-button-clear-md-light, +.toolbar-md-primary .bar-button-md-light { + color: #f4f4f4; + background-color: transparent; +} + +.toolbar-md-primary .bar-button-light-md:hover:not(.disable-hover), +.toolbar-md-primary .bar-button-clear-md-light:hover:not(.disable-hover), +.toolbar-md-primary .bar-button-md-light:hover:not(.disable-hover) { + color: #f4f4f4; +} + +.toolbar-md-primary .bar-button-outline-md-light { + border-color: #e0e0e0; + color: #e0e0e0; + background-color: transparent; +} + +.toolbar-md-primary .bar-button-outline-md-light.activated { + background-color: transparent; +} + +.toolbar-md-primary .bar-button-outline-md-light .button-effect { + background-color: #e0e0e0; +} + +.toolbar-md-primary .bar-button-solid-md-light { + color: #000; + background-color: #f4f4f4; +} + +.toolbar-md-primary .bar-button-solid-md-light.activated { + color: #000; + background-color: #e0e0e0; +} + +.toolbar-md-primary .bar-button-dark-md, +.toolbar-md-primary .bar-button-clear-md-dark, +.toolbar-md-primary .bar-button-md-dark { + color: #222; + background-color: transparent; +} + +.toolbar-md-primary .bar-button-dark-md:hover:not(.disable-hover), +.toolbar-md-primary .bar-button-clear-md-dark:hover:not(.disable-hover), +.toolbar-md-primary .bar-button-md-dark:hover:not(.disable-hover) { + color: #222; +} + +.toolbar-md-primary .bar-button-outline-md-dark { + border-color: #343434; + color: #343434; + background-color: transparent; +} + +.toolbar-md-primary .bar-button-outline-md-dark.activated { + background-color: transparent; +} + +.toolbar-md-primary .bar-button-outline-md-dark .button-effect { + background-color: #343434; +} + +.toolbar-md-primary .bar-button-solid-md-dark { + color: #fff; + background-color: #222; +} + +.toolbar-md-primary .bar-button-solid-md-dark.activated { + color: #fff; + background-color: #343434; +} + +.bar-button-primary-md, +.bar-button-clear-md-primary, +.bar-button-md-primary { + color: #387ef5; + background-color: transparent; +} + +.bar-button-primary-md:hover:not(.disable-hover), +.bar-button-clear-md-primary:hover:not(.disable-hover), +.bar-button-md-primary:hover:not(.disable-hover) { + color: #387ef5; +} + +.bar-button-outline-md-primary { + border-color: #3474e1; + color: #3474e1; + background-color: transparent; +} + +.bar-button-outline-md-primary.activated { + background-color: transparent; +} + +.bar-button-outline-md-primary .button-effect { + background-color: #3474e1; +} + +.bar-button-solid-md-primary { + color: #fff; + background-color: #387ef5; +} + +.bar-button-solid-md-primary.activated { + color: #fff; + background-color: #3474e1; +} + +.toolbar-md-secondary .toolbar-background-md { + background: #32db64; +} + +.toolbar-md-secondary .bar-button-clear-md, +.toolbar-md-secondary .bar-button-default-md, +.toolbar-md-secondary .bar-button-outline-md, +.toolbar-md-secondary .toolbar-title-md { + color: #fff; +} + +.toolbar-md-secondary .bar-button-clear-md .button-effect, +.toolbar-md-secondary .bar-button-default-md .button-effect, +.toolbar-md-secondary .bar-button-outline-md .button-effect { + background-color: #fff; +} + +.toolbar-md-secondary .bar-button-outline-md { + border-color: #fff; +} + +.toolbar-md-secondary .bar-button-primary-md, +.toolbar-md-secondary .bar-button-clear-md-primary, +.toolbar-md-secondary .bar-button-md-primary { + color: #387ef5; + background-color: transparent; +} + +.toolbar-md-secondary .bar-button-primary-md:hover:not(.disable-hover), +.toolbar-md-secondary .bar-button-clear-md-primary:hover:not(.disable-hover), +.toolbar-md-secondary .bar-button-md-primary:hover:not(.disable-hover) { + color: #387ef5; +} + +.toolbar-md-secondary .bar-button-outline-md-primary { + border-color: #3474e1; + color: #3474e1; + background-color: transparent; +} + +.toolbar-md-secondary .bar-button-outline-md-primary.activated { + background-color: transparent; +} + +.toolbar-md-secondary .bar-button-outline-md-primary .button-effect { + background-color: #3474e1; +} + +.toolbar-md-secondary .bar-button-solid-md-primary { + color: #fff; + background-color: #387ef5; +} + +.toolbar-md-secondary .bar-button-solid-md-primary.activated { + color: #fff; + background-color: #3474e1; +} + +.toolbar-md-secondary .bar-button-secondary-md, +.toolbar-md-secondary .bar-button-clear-md-secondary, +.toolbar-md-secondary .bar-button-md-secondary { + color: #32db64; + background-color: transparent; +} + +.toolbar-md-secondary .bar-button-secondary-md:hover:not(.disable-hover), +.toolbar-md-secondary .bar-button-clear-md-secondary:hover:not(.disable-hover), +.toolbar-md-secondary .bar-button-md-secondary:hover:not(.disable-hover) { + color: #32db64; +} + +.toolbar-md-secondary .bar-button-outline-md-secondary { + border-color: #2ec95c; + color: #2ec95c; + background-color: transparent; +} + +.toolbar-md-secondary .bar-button-outline-md-secondary.activated { + background-color: transparent; +} + +.toolbar-md-secondary .bar-button-outline-md-secondary .button-effect { + background-color: #2ec95c; +} + +.toolbar-md-secondary .bar-button-solid-md-secondary { + color: #fff; + background-color: #32db64; +} + +.toolbar-md-secondary .bar-button-solid-md-secondary.activated { + color: #fff; + background-color: #2ec95c; +} + +.toolbar-md-secondary .bar-button-danger-md, +.toolbar-md-secondary .bar-button-clear-md-danger, +.toolbar-md-secondary .bar-button-md-danger { + color: #f53d3d; + background-color: transparent; +} + +.toolbar-md-secondary .bar-button-danger-md:hover:not(.disable-hover), +.toolbar-md-secondary .bar-button-clear-md-danger:hover:not(.disable-hover), +.toolbar-md-secondary .bar-button-md-danger:hover:not(.disable-hover) { + color: #f53d3d; +} + +.toolbar-md-secondary .bar-button-outline-md-danger { + border-color: #e13838; + color: #e13838; + background-color: transparent; +} + +.toolbar-md-secondary .bar-button-outline-md-danger.activated { + background-color: transparent; +} + +.toolbar-md-secondary .bar-button-outline-md-danger .button-effect { + background-color: #e13838; +} + +.toolbar-md-secondary .bar-button-solid-md-danger { + color: #fff; + background-color: #f53d3d; +} + +.toolbar-md-secondary .bar-button-solid-md-danger.activated { + color: #fff; + background-color: #e13838; +} + +.toolbar-md-secondary .bar-button-light-md, +.toolbar-md-secondary .bar-button-clear-md-light, +.toolbar-md-secondary .bar-button-md-light { + color: #f4f4f4; + background-color: transparent; +} + +.toolbar-md-secondary .bar-button-light-md:hover:not(.disable-hover), +.toolbar-md-secondary .bar-button-clear-md-light:hover:not(.disable-hover), +.toolbar-md-secondary .bar-button-md-light:hover:not(.disable-hover) { + color: #f4f4f4; +} + +.toolbar-md-secondary .bar-button-outline-md-light { + border-color: #e0e0e0; + color: #e0e0e0; + background-color: transparent; +} + +.toolbar-md-secondary .bar-button-outline-md-light.activated { + background-color: transparent; +} + +.toolbar-md-secondary .bar-button-outline-md-light .button-effect { + background-color: #e0e0e0; +} + +.toolbar-md-secondary .bar-button-solid-md-light { + color: #000; + background-color: #f4f4f4; +} + +.toolbar-md-secondary .bar-button-solid-md-light.activated { + color: #000; + background-color: #e0e0e0; +} + +.toolbar-md-secondary .bar-button-dark-md, +.toolbar-md-secondary .bar-button-clear-md-dark, +.toolbar-md-secondary .bar-button-md-dark { + color: #222; + background-color: transparent; +} + +.toolbar-md-secondary .bar-button-dark-md:hover:not(.disable-hover), +.toolbar-md-secondary .bar-button-clear-md-dark:hover:not(.disable-hover), +.toolbar-md-secondary .bar-button-md-dark:hover:not(.disable-hover) { + color: #222; +} + +.toolbar-md-secondary .bar-button-outline-md-dark { + border-color: #343434; + color: #343434; + background-color: transparent; +} + +.toolbar-md-secondary .bar-button-outline-md-dark.activated { + background-color: transparent; +} + +.toolbar-md-secondary .bar-button-outline-md-dark .button-effect { + background-color: #343434; +} + +.toolbar-md-secondary .bar-button-solid-md-dark { + color: #fff; + background-color: #222; +} + +.toolbar-md-secondary .bar-button-solid-md-dark.activated { + color: #fff; + background-color: #343434; +} + +.bar-button-secondary-md, +.bar-button-clear-md-secondary, +.bar-button-md-secondary { + color: #32db64; + background-color: transparent; +} + +.bar-button-secondary-md:hover:not(.disable-hover), +.bar-button-clear-md-secondary:hover:not(.disable-hover), +.bar-button-md-secondary:hover:not(.disable-hover) { + color: #32db64; +} + +.bar-button-outline-md-secondary { + border-color: #2ec95c; + color: #2ec95c; + background-color: transparent; +} + +.bar-button-outline-md-secondary.activated { + background-color: transparent; +} + +.bar-button-outline-md-secondary .button-effect { + background-color: #2ec95c; +} + +.bar-button-solid-md-secondary { + color: #fff; + background-color: #32db64; +} + +.bar-button-solid-md-secondary.activated { + color: #fff; + background-color: #2ec95c; +} + +.toolbar-md-danger .toolbar-background-md { + background: #f53d3d; +} + +.toolbar-md-danger .bar-button-clear-md, +.toolbar-md-danger .bar-button-default-md, +.toolbar-md-danger .bar-button-outline-md, +.toolbar-md-danger .toolbar-title-md { + color: #fff; +} + +.toolbar-md-danger .bar-button-clear-md .button-effect, +.toolbar-md-danger .bar-button-default-md .button-effect, +.toolbar-md-danger .bar-button-outline-md .button-effect { + background-color: #fff; +} + +.toolbar-md-danger .bar-button-outline-md { + border-color: #fff; +} + +.toolbar-md-danger .bar-button-primary-md, +.toolbar-md-danger .bar-button-clear-md-primary, +.toolbar-md-danger .bar-button-md-primary { + color: #387ef5; + background-color: transparent; +} + +.toolbar-md-danger .bar-button-primary-md:hover:not(.disable-hover), +.toolbar-md-danger .bar-button-clear-md-primary:hover:not(.disable-hover), +.toolbar-md-danger .bar-button-md-primary:hover:not(.disable-hover) { + color: #387ef5; +} + +.toolbar-md-danger .bar-button-outline-md-primary { + border-color: #3474e1; + color: #3474e1; + background-color: transparent; +} + +.toolbar-md-danger .bar-button-outline-md-primary.activated { + background-color: transparent; +} + +.toolbar-md-danger .bar-button-outline-md-primary .button-effect { + background-color: #3474e1; +} + +.toolbar-md-danger .bar-button-solid-md-primary { + color: #fff; + background-color: #387ef5; +} + +.toolbar-md-danger .bar-button-solid-md-primary.activated { + color: #fff; + background-color: #3474e1; +} + +.toolbar-md-danger .bar-button-secondary-md, +.toolbar-md-danger .bar-button-clear-md-secondary, +.toolbar-md-danger .bar-button-md-secondary { + color: #32db64; + background-color: transparent; +} + +.toolbar-md-danger .bar-button-secondary-md:hover:not(.disable-hover), +.toolbar-md-danger .bar-button-clear-md-secondary:hover:not(.disable-hover), +.toolbar-md-danger .bar-button-md-secondary:hover:not(.disable-hover) { + color: #32db64; +} + +.toolbar-md-danger .bar-button-outline-md-secondary { + border-color: #2ec95c; + color: #2ec95c; + background-color: transparent; +} + +.toolbar-md-danger .bar-button-outline-md-secondary.activated { + background-color: transparent; +} + +.toolbar-md-danger .bar-button-outline-md-secondary .button-effect { + background-color: #2ec95c; +} + +.toolbar-md-danger .bar-button-solid-md-secondary { + color: #fff; + background-color: #32db64; +} + +.toolbar-md-danger .bar-button-solid-md-secondary.activated { + color: #fff; + background-color: #2ec95c; +} + +.toolbar-md-danger .bar-button-danger-md, +.toolbar-md-danger .bar-button-clear-md-danger, +.toolbar-md-danger .bar-button-md-danger { + color: #f53d3d; + background-color: transparent; +} + +.toolbar-md-danger .bar-button-danger-md:hover:not(.disable-hover), +.toolbar-md-danger .bar-button-clear-md-danger:hover:not(.disable-hover), +.toolbar-md-danger .bar-button-md-danger:hover:not(.disable-hover) { + color: #f53d3d; +} + +.toolbar-md-danger .bar-button-outline-md-danger { + border-color: #e13838; + color: #e13838; + background-color: transparent; +} + +.toolbar-md-danger .bar-button-outline-md-danger.activated { + background-color: transparent; +} + +.toolbar-md-danger .bar-button-outline-md-danger .button-effect { + background-color: #e13838; +} + +.toolbar-md-danger .bar-button-solid-md-danger { + color: #fff; + background-color: #f53d3d; +} + +.toolbar-md-danger .bar-button-solid-md-danger.activated { + color: #fff; + background-color: #e13838; +} + +.toolbar-md-danger .bar-button-light-md, +.toolbar-md-danger .bar-button-clear-md-light, +.toolbar-md-danger .bar-button-md-light { + color: #f4f4f4; + background-color: transparent; +} + +.toolbar-md-danger .bar-button-light-md:hover:not(.disable-hover), +.toolbar-md-danger .bar-button-clear-md-light:hover:not(.disable-hover), +.toolbar-md-danger .bar-button-md-light:hover:not(.disable-hover) { + color: #f4f4f4; +} + +.toolbar-md-danger .bar-button-outline-md-light { + border-color: #e0e0e0; + color: #e0e0e0; + background-color: transparent; +} + +.toolbar-md-danger .bar-button-outline-md-light.activated { + background-color: transparent; +} + +.toolbar-md-danger .bar-button-outline-md-light .button-effect { + background-color: #e0e0e0; +} + +.toolbar-md-danger .bar-button-solid-md-light { + color: #000; + background-color: #f4f4f4; +} + +.toolbar-md-danger .bar-button-solid-md-light.activated { + color: #000; + background-color: #e0e0e0; +} + +.toolbar-md-danger .bar-button-dark-md, +.toolbar-md-danger .bar-button-clear-md-dark, +.toolbar-md-danger .bar-button-md-dark { + color: #222; + background-color: transparent; +} + +.toolbar-md-danger .bar-button-dark-md:hover:not(.disable-hover), +.toolbar-md-danger .bar-button-clear-md-dark:hover:not(.disable-hover), +.toolbar-md-danger .bar-button-md-dark:hover:not(.disable-hover) { + color: #222; +} + +.toolbar-md-danger .bar-button-outline-md-dark { + border-color: #343434; + color: #343434; + background-color: transparent; +} + +.toolbar-md-danger .bar-button-outline-md-dark.activated { + background-color: transparent; +} + +.toolbar-md-danger .bar-button-outline-md-dark .button-effect { + background-color: #343434; +} + +.toolbar-md-danger .bar-button-solid-md-dark { + color: #fff; + background-color: #222; +} + +.toolbar-md-danger .bar-button-solid-md-dark.activated { + color: #fff; + background-color: #343434; +} + +.bar-button-danger-md, +.bar-button-clear-md-danger, +.bar-button-md-danger { + color: #f53d3d; + background-color: transparent; +} + +.bar-button-danger-md:hover:not(.disable-hover), +.bar-button-clear-md-danger:hover:not(.disable-hover), +.bar-button-md-danger:hover:not(.disable-hover) { + color: #f53d3d; +} + +.bar-button-outline-md-danger { + border-color: #e13838; + color: #e13838; + background-color: transparent; +} + +.bar-button-outline-md-danger.activated { + background-color: transparent; +} + +.bar-button-outline-md-danger .button-effect { + background-color: #e13838; +} + +.bar-button-solid-md-danger { + color: #fff; + background-color: #f53d3d; +} + +.bar-button-solid-md-danger.activated { + color: #fff; + background-color: #e13838; +} + +.toolbar-md-light .toolbar-background-md { + background: #f4f4f4; +} + +.toolbar-md-light .bar-button-clear-md, +.toolbar-md-light .bar-button-default-md, +.toolbar-md-light .bar-button-outline-md, +.toolbar-md-light .toolbar-title-md { + color: #424242; +} + +.toolbar-md-light .bar-button-clear-md .button-effect, +.toolbar-md-light .bar-button-default-md .button-effect, +.toolbar-md-light .bar-button-outline-md .button-effect { + background-color: #424242; +} + +.toolbar-md-light .bar-button-outline-md { + border-color: #424242; +} + +.toolbar-md-light .bar-button-primary-md, +.toolbar-md-light .bar-button-clear-md-primary, +.toolbar-md-light .bar-button-md-primary { + color: #387ef5; + background-color: transparent; +} + +.toolbar-md-light .bar-button-primary-md:hover:not(.disable-hover), +.toolbar-md-light .bar-button-clear-md-primary:hover:not(.disable-hover), +.toolbar-md-light .bar-button-md-primary:hover:not(.disable-hover) { + color: #387ef5; +} + +.toolbar-md-light .bar-button-outline-md-primary { + border-color: #3474e1; + color: #3474e1; + background-color: transparent; +} + +.toolbar-md-light .bar-button-outline-md-primary.activated { + background-color: transparent; +} + +.toolbar-md-light .bar-button-outline-md-primary .button-effect { + background-color: #3474e1; +} + +.toolbar-md-light .bar-button-solid-md-primary { + color: #fff; + background-color: #387ef5; +} + +.toolbar-md-light .bar-button-solid-md-primary.activated { + color: #fff; + background-color: #3474e1; +} + +.toolbar-md-light .bar-button-secondary-md, +.toolbar-md-light .bar-button-clear-md-secondary, +.toolbar-md-light .bar-button-md-secondary { + color: #32db64; + background-color: transparent; +} + +.toolbar-md-light .bar-button-secondary-md:hover:not(.disable-hover), +.toolbar-md-light .bar-button-clear-md-secondary:hover:not(.disable-hover), +.toolbar-md-light .bar-button-md-secondary:hover:not(.disable-hover) { + color: #32db64; +} + +.toolbar-md-light .bar-button-outline-md-secondary { + border-color: #2ec95c; + color: #2ec95c; + background-color: transparent; +} + +.toolbar-md-light .bar-button-outline-md-secondary.activated { + background-color: transparent; +} + +.toolbar-md-light .bar-button-outline-md-secondary .button-effect { + background-color: #2ec95c; +} + +.toolbar-md-light .bar-button-solid-md-secondary { + color: #fff; + background-color: #32db64; +} + +.toolbar-md-light .bar-button-solid-md-secondary.activated { + color: #fff; + background-color: #2ec95c; +} + +.toolbar-md-light .bar-button-danger-md, +.toolbar-md-light .bar-button-clear-md-danger, +.toolbar-md-light .bar-button-md-danger { + color: #f53d3d; + background-color: transparent; +} + +.toolbar-md-light .bar-button-danger-md:hover:not(.disable-hover), +.toolbar-md-light .bar-button-clear-md-danger:hover:not(.disable-hover), +.toolbar-md-light .bar-button-md-danger:hover:not(.disable-hover) { + color: #f53d3d; +} + +.toolbar-md-light .bar-button-outline-md-danger { + border-color: #e13838; + color: #e13838; + background-color: transparent; +} + +.toolbar-md-light .bar-button-outline-md-danger.activated { + background-color: transparent; +} + +.toolbar-md-light .bar-button-outline-md-danger .button-effect { + background-color: #e13838; +} + +.toolbar-md-light .bar-button-solid-md-danger { + color: #fff; + background-color: #f53d3d; +} + +.toolbar-md-light .bar-button-solid-md-danger.activated { + color: #fff; + background-color: #e13838; +} + +.toolbar-md-light .bar-button-light-md, +.toolbar-md-light .bar-button-clear-md-light, +.toolbar-md-light .bar-button-md-light { + color: #f4f4f4; + background-color: transparent; +} + +.toolbar-md-light .bar-button-light-md:hover:not(.disable-hover), +.toolbar-md-light .bar-button-clear-md-light:hover:not(.disable-hover), +.toolbar-md-light .bar-button-md-light:hover:not(.disable-hover) { + color: #f4f4f4; +} + +.toolbar-md-light .bar-button-outline-md-light { + border-color: #e0e0e0; + color: #e0e0e0; + background-color: transparent; +} + +.toolbar-md-light .bar-button-outline-md-light.activated { + background-color: transparent; +} + +.toolbar-md-light .bar-button-outline-md-light .button-effect { + background-color: #e0e0e0; +} + +.toolbar-md-light .bar-button-solid-md-light { + color: #000; + background-color: #f4f4f4; +} + +.toolbar-md-light .bar-button-solid-md-light.activated { + color: #000; + background-color: #e0e0e0; +} + +.toolbar-md-light .bar-button-dark-md, +.toolbar-md-light .bar-button-clear-md-dark, +.toolbar-md-light .bar-button-md-dark { + color: #222; + background-color: transparent; +} + +.toolbar-md-light .bar-button-dark-md:hover:not(.disable-hover), +.toolbar-md-light .bar-button-clear-md-dark:hover:not(.disable-hover), +.toolbar-md-light .bar-button-md-dark:hover:not(.disable-hover) { + color: #222; +} + +.toolbar-md-light .bar-button-outline-md-dark { + border-color: #343434; + color: #343434; + background-color: transparent; +} + +.toolbar-md-light .bar-button-outline-md-dark.activated { + background-color: transparent; +} + +.toolbar-md-light .bar-button-outline-md-dark .button-effect { + background-color: #343434; +} + +.toolbar-md-light .bar-button-solid-md-dark { + color: #fff; + background-color: #222; +} + +.toolbar-md-light .bar-button-solid-md-dark.activated { + color: #fff; + background-color: #343434; +} + +.bar-button-light-md, +.bar-button-clear-md-light, +.bar-button-md-light { + color: #f4f4f4; + background-color: transparent; +} + +.bar-button-light-md:hover:not(.disable-hover), +.bar-button-clear-md-light:hover:not(.disable-hover), +.bar-button-md-light:hover:not(.disable-hover) { + color: #f4f4f4; +} + +.bar-button-outline-md-light { + border-color: #e0e0e0; + color: #e0e0e0; + background-color: transparent; +} + +.bar-button-outline-md-light.activated { + background-color: transparent; +} + +.bar-button-outline-md-light .button-effect { + background-color: #e0e0e0; +} + +.bar-button-solid-md-light { + color: #000; + background-color: #f4f4f4; +} + +.bar-button-solid-md-light.activated { + color: #000; + background-color: #e0e0e0; +} + +.toolbar-md-dark .toolbar-background-md { + background: #222; +} + +.toolbar-md-dark .bar-button-clear-md, +.toolbar-md-dark .bar-button-default-md, +.toolbar-md-dark .bar-button-outline-md, +.toolbar-md-dark .toolbar-title-md { + color: #fff; +} + +.toolbar-md-dark .bar-button-clear-md .button-effect, +.toolbar-md-dark .bar-button-default-md .button-effect, +.toolbar-md-dark .bar-button-outline-md .button-effect { + background-color: #fff; +} + +.toolbar-md-dark .bar-button-outline-md { + border-color: #fff; +} + +.toolbar-md-dark .bar-button-primary-md, +.toolbar-md-dark .bar-button-clear-md-primary, +.toolbar-md-dark .bar-button-md-primary { + color: #387ef5; + background-color: transparent; +} + +.toolbar-md-dark .bar-button-primary-md:hover:not(.disable-hover), +.toolbar-md-dark .bar-button-clear-md-primary:hover:not(.disable-hover), +.toolbar-md-dark .bar-button-md-primary:hover:not(.disable-hover) { + color: #387ef5; +} + +.toolbar-md-dark .bar-button-outline-md-primary { + border-color: #3474e1; + color: #3474e1; + background-color: transparent; +} + +.toolbar-md-dark .bar-button-outline-md-primary.activated { + background-color: transparent; +} + +.toolbar-md-dark .bar-button-outline-md-primary .button-effect { + background-color: #3474e1; +} + +.toolbar-md-dark .bar-button-solid-md-primary { + color: #fff; + background-color: #387ef5; +} + +.toolbar-md-dark .bar-button-solid-md-primary.activated { + color: #fff; + background-color: #3474e1; +} + +.toolbar-md-dark .bar-button-secondary-md, +.toolbar-md-dark .bar-button-clear-md-secondary, +.toolbar-md-dark .bar-button-md-secondary { + color: #32db64; + background-color: transparent; +} + +.toolbar-md-dark .bar-button-secondary-md:hover:not(.disable-hover), +.toolbar-md-dark .bar-button-clear-md-secondary:hover:not(.disable-hover), +.toolbar-md-dark .bar-button-md-secondary:hover:not(.disable-hover) { + color: #32db64; +} + +.toolbar-md-dark .bar-button-outline-md-secondary { + border-color: #2ec95c; + color: #2ec95c; + background-color: transparent; +} + +.toolbar-md-dark .bar-button-outline-md-secondary.activated { + background-color: transparent; +} + +.toolbar-md-dark .bar-button-outline-md-secondary .button-effect { + background-color: #2ec95c; +} + +.toolbar-md-dark .bar-button-solid-md-secondary { + color: #fff; + background-color: #32db64; +} + +.toolbar-md-dark .bar-button-solid-md-secondary.activated { + color: #fff; + background-color: #2ec95c; +} + +.toolbar-md-dark .bar-button-danger-md, +.toolbar-md-dark .bar-button-clear-md-danger, +.toolbar-md-dark .bar-button-md-danger { + color: #f53d3d; + background-color: transparent; +} + +.toolbar-md-dark .bar-button-danger-md:hover:not(.disable-hover), +.toolbar-md-dark .bar-button-clear-md-danger:hover:not(.disable-hover), +.toolbar-md-dark .bar-button-md-danger:hover:not(.disable-hover) { + color: #f53d3d; +} + +.toolbar-md-dark .bar-button-outline-md-danger { + border-color: #e13838; + color: #e13838; + background-color: transparent; +} + +.toolbar-md-dark .bar-button-outline-md-danger.activated { + background-color: transparent; +} + +.toolbar-md-dark .bar-button-outline-md-danger .button-effect { + background-color: #e13838; +} + +.toolbar-md-dark .bar-button-solid-md-danger { + color: #fff; + background-color: #f53d3d; +} + +.toolbar-md-dark .bar-button-solid-md-danger.activated { + color: #fff; + background-color: #e13838; +} + +.toolbar-md-dark .bar-button-light-md, +.toolbar-md-dark .bar-button-clear-md-light, +.toolbar-md-dark .bar-button-md-light { + color: #f4f4f4; + background-color: transparent; +} + +.toolbar-md-dark .bar-button-light-md:hover:not(.disable-hover), +.toolbar-md-dark .bar-button-clear-md-light:hover:not(.disable-hover), +.toolbar-md-dark .bar-button-md-light:hover:not(.disable-hover) { + color: #f4f4f4; +} + +.toolbar-md-dark .bar-button-outline-md-light { + border-color: #e0e0e0; + color: #e0e0e0; + background-color: transparent; +} + +.toolbar-md-dark .bar-button-outline-md-light.activated { + background-color: transparent; +} + +.toolbar-md-dark .bar-button-outline-md-light .button-effect { + background-color: #e0e0e0; +} + +.toolbar-md-dark .bar-button-solid-md-light { + color: #000; + background-color: #f4f4f4; +} + +.toolbar-md-dark .bar-button-solid-md-light.activated { + color: #000; + background-color: #e0e0e0; +} + +.toolbar-md-dark .bar-button-dark-md, +.toolbar-md-dark .bar-button-clear-md-dark, +.toolbar-md-dark .bar-button-md-dark { + color: #222; + background-color: transparent; +} + +.toolbar-md-dark .bar-button-dark-md:hover:not(.disable-hover), +.toolbar-md-dark .bar-button-clear-md-dark:hover:not(.disable-hover), +.toolbar-md-dark .bar-button-md-dark:hover:not(.disable-hover) { + color: #222; +} + +.toolbar-md-dark .bar-button-outline-md-dark { + border-color: #343434; + color: #343434; + background-color: transparent; +} + +.toolbar-md-dark .bar-button-outline-md-dark.activated { + background-color: transparent; +} + +.toolbar-md-dark .bar-button-outline-md-dark .button-effect { + background-color: #343434; +} + +.toolbar-md-dark .bar-button-solid-md-dark { + color: #fff; + background-color: #222; +} + +.toolbar-md-dark .bar-button-solid-md-dark.activated { + color: #fff; + background-color: #343434; +} + +.bar-button-dark-md, +.bar-button-clear-md-dark, +.bar-button-md-dark { + color: #222; + background-color: transparent; +} + +.bar-button-dark-md:hover:not(.disable-hover), +.bar-button-clear-md-dark:hover:not(.disable-hover), +.bar-button-md-dark:hover:not(.disable-hover) { + color: #222; +} + +.bar-button-outline-md-dark { + border-color: #343434; + color: #343434; + background-color: transparent; +} + +.bar-button-outline-md-dark.activated { + background-color: transparent; +} + +.bar-button-outline-md-dark .button-effect { + background-color: #343434; +} + +.bar-button-solid-md-dark { + color: #fff; + background-color: #222; +} + +.bar-button-solid-md-dark.activated { + color: #fff; + background-color: #343434; +} + +.bar-button-strong-md { + font-weight: bold; +} + +.toolbar-wp { + padding: 4px; + min-height: 46px; +} + +.toolbar-background-wp { + border-color: #b2b2b2; + background: #f8f8f8; +} + +.toolbar-content-wp { + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + -webkit-order: 3; + -ms-flex-order: 3; + order: 3; + min-width: 0; + max-width: 100%; +} + +.toolbar-title-wp { + padding: 0 6px; + font-size: 1.5rem; + font-weight: bold; + text-transform: uppercase; + color: #000; +} + +.bar-buttons-wp { + -webkit-order: 4; + -ms-flex-order: 4; + order: 4; + -webkit-transform: translateZ(0); + transform: translateZ(0); +} + +.bar-buttons-wp[left] { + -webkit-order: 2; + -ms-flex-order: 2; + order: 2; +} + +.bar-buttons-wp[left] .bar-button:first-child { + margin-left: 0; +} + +.bar-buttons-wp[end] { + -webkit-order: 5; + -ms-flex-order: 5; + order: 5; + text-align: right; +} + +.bar-buttons-wp[right] { + -webkit-order: 6; + -ms-flex-order: 6; + order: 6; + text-align: right; +} + +.bar-button-wp { + margin-top: 0; + margin-right: .2rem; + margin-bottom: 0; + margin-left: .2rem; + padding: 0 5px; + height: 32px; + border: 0; + border-radius: 2px; + font-size: 1.4rem; + font-weight: 500; + text-transform: uppercase; +} + +.bar-button-solid-wp, +.bar-button-outline-wp { + overflow: hidden; +} + +.bar-button-outline-wp { + border-width: 1px; + border-style: solid; + border-color: #000; + color: #000; + background-color: transparent; +} + +.bar-button-outline-wp:hover:not(.disable-hover) { + opacity: .4; +} + +.bar-button-outline-wp.activated { + color: #fff; + background-color: #000; +} + +.bar-button-solid-wp { + color: #fff; + background-color: #000; +} + +.bar-button-solid-wp:hover:not(.disable-hover) { + color: #fff; +} + +.bar-button-solid-wp.activated { + color: #fff; + background-color: #141414; +} + +.bar-button-wp.bar-button-icon-left ion-icon { + padding-right: .3em; + font-size: 1.4em; + line-height: .67; + pointer-events: none; +} + +.bar-button-wp.bar-button-icon-right ion-icon { + padding-left: .4em; + font-size: 1.4em; + line-height: .67; + pointer-events: none; +} + +.bar-button-wp[icon-only] { + padding: 0; +} + +.bar-button-wp[icon-only] ion-icon { + padding: 0 .1em; + min-width: 28px; + font-size: 1.8em; + line-height: .67; + pointer-events: none; +} + +.back-button-wp { + margin: 0 6px; + min-width: 44px; + box-shadow: none; +} + +.back-button-icon-wp { + margin: 0; + padding: 0 6px; + font-size: 2.4rem; + font-weight: normal; + text-align: left; +} + +.bar-button-menutoggle-wp { + -webkit-order: 1; + -ms-flex-order: 1; + order: 1; + margin: 0 6px; + padding: 0 2px; + min-width: 44px; +} + +.bar-button-menutoggle-wp ion-icon { + padding: 0 6px; + font-size: 2.4rem; +} + +.bar-button-menutoggle-wp[end], +.bar-button-menutoggle-wp[right] { + -webkit-order: 7; + -ms-flex-order: 7; + order: 7; + margin: 0 2px; + min-width: 28px; +} + +.bar-button-default-wp, +.bar-button-clear-wp-default, +.bar-button-wp-default { + color: #000; + background-color: transparent; +} + +.bar-button-default-wp:hover:not(.disable-hover), +.bar-button-clear-wp-default:hover:not(.disable-hover), +.bar-button-wp-default:hover:not(.disable-hover) { + color: #000; +} + +.bar-button-clear-wp, +.bar-button-clear-wp-clear, +.bar-button-wp-clear { + color: #000; + background-color: transparent; +} + +.bar-button-clear-wp:hover:not(.disable-hover), +.bar-button-clear-wp-clear:hover:not(.disable-hover), +.bar-button-wp-clear:hover:not(.disable-hover) { + color: #000; +} + +.toolbar-wp-primary .toolbar-background-wp { + background: #387ef5; +} + +.toolbar-wp-primary .bar-button-clear-wp, +.toolbar-wp-primary .bar-button-default-wp, +.toolbar-wp-primary .bar-button-outline-wp, +.toolbar-wp-primary .toolbar-title-wp { + color: #fff; +} + +.toolbar-wp-primary .bar-button-outline-wp { + border-color: #fff; +} + +.toolbar-wp-primary .bar-button-primary-wp, +.toolbar-wp-primary .bar-button-clear-wp-primary, +.toolbar-wp-primary .bar-button-wp-primary { + color: #387ef5; + background-color: transparent; +} + +.toolbar-wp-primary .bar-button-primary-wp:hover:not(.disable-hover), +.toolbar-wp-primary .bar-button-clear-wp-primary:hover:not(.disable-hover), +.toolbar-wp-primary .bar-button-wp-primary:hover:not(.disable-hover) { + color: #387ef5; +} + +.toolbar-wp-primary .bar-button-outline-wp-primary { + border-color: #3474e1; + color: #3474e1; + background-color: transparent; +} + +.toolbar-wp-primary .bar-button-outline-wp-primary.activated { + color: #fff; + background-color: #3474e1; +} + +.toolbar-wp-primary .bar-button-solid-wp-primary { + color: #fff; + background-color: #387ef5; +} + +.toolbar-wp-primary .bar-button-solid-wp-primary.activated { + color: #fff; + background-color: #3474e1; +} + +.toolbar-wp-primary .bar-button-secondary-wp, +.toolbar-wp-primary .bar-button-clear-wp-secondary, +.toolbar-wp-primary .bar-button-wp-secondary { + color: #32db64; + background-color: transparent; +} + +.toolbar-wp-primary .bar-button-secondary-wp:hover:not(.disable-hover), +.toolbar-wp-primary .bar-button-clear-wp-secondary:hover:not(.disable-hover), +.toolbar-wp-primary .bar-button-wp-secondary:hover:not(.disable-hover) { + color: #32db64; +} + +.toolbar-wp-primary .bar-button-outline-wp-secondary { + border-color: #2ec95c; + color: #2ec95c; + background-color: transparent; +} + +.toolbar-wp-primary .bar-button-outline-wp-secondary.activated { + color: #fff; + background-color: #2ec95c; +} + +.toolbar-wp-primary .bar-button-solid-wp-secondary { + color: #fff; + background-color: #32db64; +} + +.toolbar-wp-primary .bar-button-solid-wp-secondary.activated { + color: #fff; + background-color: #2ec95c; +} + +.toolbar-wp-primary .bar-button-danger-wp, +.toolbar-wp-primary .bar-button-clear-wp-danger, +.toolbar-wp-primary .bar-button-wp-danger { + color: #f53d3d; + background-color: transparent; +} + +.toolbar-wp-primary .bar-button-danger-wp:hover:not(.disable-hover), +.toolbar-wp-primary .bar-button-clear-wp-danger:hover:not(.disable-hover), +.toolbar-wp-primary .bar-button-wp-danger:hover:not(.disable-hover) { + color: #f53d3d; +} + +.toolbar-wp-primary .bar-button-outline-wp-danger { + border-color: #e13838; + color: #e13838; + background-color: transparent; +} + +.toolbar-wp-primary .bar-button-outline-wp-danger.activated { + color: #fff; + background-color: #e13838; +} + +.toolbar-wp-primary .bar-button-solid-wp-danger { + color: #fff; + background-color: #f53d3d; +} + +.toolbar-wp-primary .bar-button-solid-wp-danger.activated { + color: #fff; + background-color: #e13838; +} + +.toolbar-wp-primary .bar-button-light-wp, +.toolbar-wp-primary .bar-button-clear-wp-light, +.toolbar-wp-primary .bar-button-wp-light { + color: #f4f4f4; + background-color: transparent; +} + +.toolbar-wp-primary .bar-button-light-wp:hover:not(.disable-hover), +.toolbar-wp-primary .bar-button-clear-wp-light:hover:not(.disable-hover), +.toolbar-wp-primary .bar-button-wp-light:hover:not(.disable-hover) { + color: #f4f4f4; +} + +.toolbar-wp-primary .bar-button-outline-wp-light { + border-color: #e0e0e0; + color: #e0e0e0; + background-color: transparent; +} + +.toolbar-wp-primary .bar-button-outline-wp-light.activated { + color: #000; + background-color: #e0e0e0; +} + +.toolbar-wp-primary .bar-button-solid-wp-light { + color: #000; + background-color: #f4f4f4; +} + +.toolbar-wp-primary .bar-button-solid-wp-light.activated { + color: #000; + background-color: #e0e0e0; +} + +.toolbar-wp-primary .bar-button-dark-wp, +.toolbar-wp-primary .bar-button-clear-wp-dark, +.toolbar-wp-primary .bar-button-wp-dark { + color: #222; + background-color: transparent; +} + +.toolbar-wp-primary .bar-button-dark-wp:hover:not(.disable-hover), +.toolbar-wp-primary .bar-button-clear-wp-dark:hover:not(.disable-hover), +.toolbar-wp-primary .bar-button-wp-dark:hover:not(.disable-hover) { + color: #222; +} + +.toolbar-wp-primary .bar-button-outline-wp-dark { + border-color: #343434; + color: #343434; + background-color: transparent; +} + +.toolbar-wp-primary .bar-button-outline-wp-dark.activated { + color: #fff; + background-color: #343434; +} + +.toolbar-wp-primary .bar-button-solid-wp-dark { + color: #fff; + background-color: #222; +} + +.toolbar-wp-primary .bar-button-solid-wp-dark.activated { + color: #fff; + background-color: #343434; +} + +.bar-button-primary-wp, +.bar-button-clear-wp-primary, +.bar-button-wp-primary { + color: #387ef5; + background-color: transparent; +} + +.bar-button-primary-wp:hover:not(.disable-hover), +.bar-button-clear-wp-primary:hover:not(.disable-hover), +.bar-button-wp-primary:hover:not(.disable-hover) { + color: #387ef5; +} + +.bar-button-outline-wp-primary { + border-color: #3474e1; + color: #3474e1; + background-color: transparent; +} + +.bar-button-outline-wp-primary.activated { + color: #fff; + background-color: #3474e1; +} + +.bar-button-solid-wp-primary { + color: #fff; + background-color: #387ef5; +} + +.bar-button-solid-wp-primary.activated { + color: #fff; + background-color: #3474e1; +} + +.toolbar-wp-secondary .toolbar-background-wp { + background: #32db64; +} + +.toolbar-wp-secondary .bar-button-clear-wp, +.toolbar-wp-secondary .bar-button-default-wp, +.toolbar-wp-secondary .bar-button-outline-wp, +.toolbar-wp-secondary .toolbar-title-wp { + color: #fff; +} + +.toolbar-wp-secondary .bar-button-outline-wp { + border-color: #fff; +} + +.toolbar-wp-secondary .bar-button-primary-wp, +.toolbar-wp-secondary .bar-button-clear-wp-primary, +.toolbar-wp-secondary .bar-button-wp-primary { + color: #387ef5; + background-color: transparent; +} + +.toolbar-wp-secondary .bar-button-primary-wp:hover:not(.disable-hover), +.toolbar-wp-secondary .bar-button-clear-wp-primary:hover:not(.disable-hover), +.toolbar-wp-secondary .bar-button-wp-primary:hover:not(.disable-hover) { + color: #387ef5; +} + +.toolbar-wp-secondary .bar-button-outline-wp-primary { + border-color: #3474e1; + color: #3474e1; + background-color: transparent; +} + +.toolbar-wp-secondary .bar-button-outline-wp-primary.activated { + color: #fff; + background-color: #3474e1; +} + +.toolbar-wp-secondary .bar-button-solid-wp-primary { + color: #fff; + background-color: #387ef5; +} + +.toolbar-wp-secondary .bar-button-solid-wp-primary.activated { + color: #fff; + background-color: #3474e1; +} + +.toolbar-wp-secondary .bar-button-secondary-wp, +.toolbar-wp-secondary .bar-button-clear-wp-secondary, +.toolbar-wp-secondary .bar-button-wp-secondary { + color: #32db64; + background-color: transparent; +} + +.toolbar-wp-secondary .bar-button-secondary-wp:hover:not(.disable-hover), +.toolbar-wp-secondary .bar-button-clear-wp-secondary:hover:not(.disable-hover), +.toolbar-wp-secondary .bar-button-wp-secondary:hover:not(.disable-hover) { + color: #32db64; +} + +.toolbar-wp-secondary .bar-button-outline-wp-secondary { + border-color: #2ec95c; + color: #2ec95c; + background-color: transparent; +} + +.toolbar-wp-secondary .bar-button-outline-wp-secondary.activated { + color: #fff; + background-color: #2ec95c; +} + +.toolbar-wp-secondary .bar-button-solid-wp-secondary { + color: #fff; + background-color: #32db64; +} + +.toolbar-wp-secondary .bar-button-solid-wp-secondary.activated { + color: #fff; + background-color: #2ec95c; +} + +.toolbar-wp-secondary .bar-button-danger-wp, +.toolbar-wp-secondary .bar-button-clear-wp-danger, +.toolbar-wp-secondary .bar-button-wp-danger { + color: #f53d3d; + background-color: transparent; +} + +.toolbar-wp-secondary .bar-button-danger-wp:hover:not(.disable-hover), +.toolbar-wp-secondary .bar-button-clear-wp-danger:hover:not(.disable-hover), +.toolbar-wp-secondary .bar-button-wp-danger:hover:not(.disable-hover) { + color: #f53d3d; +} + +.toolbar-wp-secondary .bar-button-outline-wp-danger { + border-color: #e13838; + color: #e13838; + background-color: transparent; +} + +.toolbar-wp-secondary .bar-button-outline-wp-danger.activated { + color: #fff; + background-color: #e13838; +} + +.toolbar-wp-secondary .bar-button-solid-wp-danger { + color: #fff; + background-color: #f53d3d; +} + +.toolbar-wp-secondary .bar-button-solid-wp-danger.activated { + color: #fff; + background-color: #e13838; +} + +.toolbar-wp-secondary .bar-button-light-wp, +.toolbar-wp-secondary .bar-button-clear-wp-light, +.toolbar-wp-secondary .bar-button-wp-light { + color: #f4f4f4; + background-color: transparent; +} + +.toolbar-wp-secondary .bar-button-light-wp:hover:not(.disable-hover), +.toolbar-wp-secondary .bar-button-clear-wp-light:hover:not(.disable-hover), +.toolbar-wp-secondary .bar-button-wp-light:hover:not(.disable-hover) { + color: #f4f4f4; +} + +.toolbar-wp-secondary .bar-button-outline-wp-light { + border-color: #e0e0e0; + color: #e0e0e0; + background-color: transparent; +} + +.toolbar-wp-secondary .bar-button-outline-wp-light.activated { + color: #000; + background-color: #e0e0e0; +} + +.toolbar-wp-secondary .bar-button-solid-wp-light { + color: #000; + background-color: #f4f4f4; +} + +.toolbar-wp-secondary .bar-button-solid-wp-light.activated { + color: #000; + background-color: #e0e0e0; +} + +.toolbar-wp-secondary .bar-button-dark-wp, +.toolbar-wp-secondary .bar-button-clear-wp-dark, +.toolbar-wp-secondary .bar-button-wp-dark { + color: #222; + background-color: transparent; +} + +.toolbar-wp-secondary .bar-button-dark-wp:hover:not(.disable-hover), +.toolbar-wp-secondary .bar-button-clear-wp-dark:hover:not(.disable-hover), +.toolbar-wp-secondary .bar-button-wp-dark:hover:not(.disable-hover) { + color: #222; +} + +.toolbar-wp-secondary .bar-button-outline-wp-dark { + border-color: #343434; + color: #343434; + background-color: transparent; +} + +.toolbar-wp-secondary .bar-button-outline-wp-dark.activated { + color: #fff; + background-color: #343434; +} + +.toolbar-wp-secondary .bar-button-solid-wp-dark { + color: #fff; + background-color: #222; +} + +.toolbar-wp-secondary .bar-button-solid-wp-dark.activated { + color: #fff; + background-color: #343434; +} + +.bar-button-secondary-wp, +.bar-button-clear-wp-secondary, +.bar-button-wp-secondary { + color: #32db64; + background-color: transparent; +} + +.bar-button-secondary-wp:hover:not(.disable-hover), +.bar-button-clear-wp-secondary:hover:not(.disable-hover), +.bar-button-wp-secondary:hover:not(.disable-hover) { + color: #32db64; +} + +.bar-button-outline-wp-secondary { + border-color: #2ec95c; + color: #2ec95c; + background-color: transparent; +} + +.bar-button-outline-wp-secondary.activated { + color: #fff; + background-color: #2ec95c; +} + +.bar-button-solid-wp-secondary { + color: #fff; + background-color: #32db64; +} + +.bar-button-solid-wp-secondary.activated { + color: #fff; + background-color: #2ec95c; +} + +.toolbar-wp-danger .toolbar-background-wp { + background: #f53d3d; +} + +.toolbar-wp-danger .bar-button-clear-wp, +.toolbar-wp-danger .bar-button-default-wp, +.toolbar-wp-danger .bar-button-outline-wp, +.toolbar-wp-danger .toolbar-title-wp { + color: #fff; +} + +.toolbar-wp-danger .bar-button-outline-wp { + border-color: #fff; +} + +.toolbar-wp-danger .bar-button-primary-wp, +.toolbar-wp-danger .bar-button-clear-wp-primary, +.toolbar-wp-danger .bar-button-wp-primary { + color: #387ef5; + background-color: transparent; +} + +.toolbar-wp-danger .bar-button-primary-wp:hover:not(.disable-hover), +.toolbar-wp-danger .bar-button-clear-wp-primary:hover:not(.disable-hover), +.toolbar-wp-danger .bar-button-wp-primary:hover:not(.disable-hover) { + color: #387ef5; +} + +.toolbar-wp-danger .bar-button-outline-wp-primary { + border-color: #3474e1; + color: #3474e1; + background-color: transparent; +} + +.toolbar-wp-danger .bar-button-outline-wp-primary.activated { + color: #fff; + background-color: #3474e1; +} + +.toolbar-wp-danger .bar-button-solid-wp-primary { + color: #fff; + background-color: #387ef5; +} + +.toolbar-wp-danger .bar-button-solid-wp-primary.activated { + color: #fff; + background-color: #3474e1; +} + +.toolbar-wp-danger .bar-button-secondary-wp, +.toolbar-wp-danger .bar-button-clear-wp-secondary, +.toolbar-wp-danger .bar-button-wp-secondary { + color: #32db64; + background-color: transparent; +} + +.toolbar-wp-danger .bar-button-secondary-wp:hover:not(.disable-hover), +.toolbar-wp-danger .bar-button-clear-wp-secondary:hover:not(.disable-hover), +.toolbar-wp-danger .bar-button-wp-secondary:hover:not(.disable-hover) { + color: #32db64; +} + +.toolbar-wp-danger .bar-button-outline-wp-secondary { + border-color: #2ec95c; + color: #2ec95c; + background-color: transparent; +} + +.toolbar-wp-danger .bar-button-outline-wp-secondary.activated { + color: #fff; + background-color: #2ec95c; +} + +.toolbar-wp-danger .bar-button-solid-wp-secondary { + color: #fff; + background-color: #32db64; +} + +.toolbar-wp-danger .bar-button-solid-wp-secondary.activated { + color: #fff; + background-color: #2ec95c; +} + +.toolbar-wp-danger .bar-button-danger-wp, +.toolbar-wp-danger .bar-button-clear-wp-danger, +.toolbar-wp-danger .bar-button-wp-danger { + color: #f53d3d; + background-color: transparent; +} + +.toolbar-wp-danger .bar-button-danger-wp:hover:not(.disable-hover), +.toolbar-wp-danger .bar-button-clear-wp-danger:hover:not(.disable-hover), +.toolbar-wp-danger .bar-button-wp-danger:hover:not(.disable-hover) { + color: #f53d3d; +} + +.toolbar-wp-danger .bar-button-outline-wp-danger { + border-color: #e13838; + color: #e13838; + background-color: transparent; +} + +.toolbar-wp-danger .bar-button-outline-wp-danger.activated { + color: #fff; + background-color: #e13838; +} + +.toolbar-wp-danger .bar-button-solid-wp-danger { + color: #fff; + background-color: #f53d3d; +} + +.toolbar-wp-danger .bar-button-solid-wp-danger.activated { + color: #fff; + background-color: #e13838; +} + +.toolbar-wp-danger .bar-button-light-wp, +.toolbar-wp-danger .bar-button-clear-wp-light, +.toolbar-wp-danger .bar-button-wp-light { + color: #f4f4f4; + background-color: transparent; +} + +.toolbar-wp-danger .bar-button-light-wp:hover:not(.disable-hover), +.toolbar-wp-danger .bar-button-clear-wp-light:hover:not(.disable-hover), +.toolbar-wp-danger .bar-button-wp-light:hover:not(.disable-hover) { + color: #f4f4f4; +} + +.toolbar-wp-danger .bar-button-outline-wp-light { + border-color: #e0e0e0; + color: #e0e0e0; + background-color: transparent; +} + +.toolbar-wp-danger .bar-button-outline-wp-light.activated { + color: #000; + background-color: #e0e0e0; +} + +.toolbar-wp-danger .bar-button-solid-wp-light { + color: #000; + background-color: #f4f4f4; +} + +.toolbar-wp-danger .bar-button-solid-wp-light.activated { + color: #000; + background-color: #e0e0e0; +} + +.toolbar-wp-danger .bar-button-dark-wp, +.toolbar-wp-danger .bar-button-clear-wp-dark, +.toolbar-wp-danger .bar-button-wp-dark { + color: #222; + background-color: transparent; +} + +.toolbar-wp-danger .bar-button-dark-wp:hover:not(.disable-hover), +.toolbar-wp-danger .bar-button-clear-wp-dark:hover:not(.disable-hover), +.toolbar-wp-danger .bar-button-wp-dark:hover:not(.disable-hover) { + color: #222; +} + +.toolbar-wp-danger .bar-button-outline-wp-dark { + border-color: #343434; + color: #343434; + background-color: transparent; +} + +.toolbar-wp-danger .bar-button-outline-wp-dark.activated { + color: #fff; + background-color: #343434; +} + +.toolbar-wp-danger .bar-button-solid-wp-dark { + color: #fff; + background-color: #222; +} + +.toolbar-wp-danger .bar-button-solid-wp-dark.activated { + color: #fff; + background-color: #343434; +} + +.bar-button-danger-wp, +.bar-button-clear-wp-danger, +.bar-button-wp-danger { + color: #f53d3d; + background-color: transparent; +} + +.bar-button-danger-wp:hover:not(.disable-hover), +.bar-button-clear-wp-danger:hover:not(.disable-hover), +.bar-button-wp-danger:hover:not(.disable-hover) { + color: #f53d3d; +} + +.bar-button-outline-wp-danger { + border-color: #e13838; + color: #e13838; + background-color: transparent; +} + +.bar-button-outline-wp-danger.activated { + color: #fff; + background-color: #e13838; +} + +.bar-button-solid-wp-danger { + color: #fff; + background-color: #f53d3d; +} + +.bar-button-solid-wp-danger.activated { + color: #fff; + background-color: #e13838; +} + +.toolbar-wp-light .toolbar-background-wp { + background: #f4f4f4; +} + +.toolbar-wp-light .bar-button-clear-wp, +.toolbar-wp-light .bar-button-default-wp, +.toolbar-wp-light .bar-button-outline-wp, +.toolbar-wp-light .toolbar-title-wp { + color: #000; +} + +.toolbar-wp-light .bar-button-outline-wp { + border-color: #000; +} + +.toolbar-wp-light .bar-button-primary-wp, +.toolbar-wp-light .bar-button-clear-wp-primary, +.toolbar-wp-light .bar-button-wp-primary { + color: #387ef5; + background-color: transparent; +} + +.toolbar-wp-light .bar-button-primary-wp:hover:not(.disable-hover), +.toolbar-wp-light .bar-button-clear-wp-primary:hover:not(.disable-hover), +.toolbar-wp-light .bar-button-wp-primary:hover:not(.disable-hover) { + color: #387ef5; +} + +.toolbar-wp-light .bar-button-outline-wp-primary { + border-color: #3474e1; + color: #3474e1; + background-color: transparent; +} + +.toolbar-wp-light .bar-button-outline-wp-primary.activated { + color: #fff; + background-color: #3474e1; +} + +.toolbar-wp-light .bar-button-solid-wp-primary { + color: #fff; + background-color: #387ef5; +} + +.toolbar-wp-light .bar-button-solid-wp-primary.activated { + color: #fff; + background-color: #3474e1; +} + +.toolbar-wp-light .bar-button-secondary-wp, +.toolbar-wp-light .bar-button-clear-wp-secondary, +.toolbar-wp-light .bar-button-wp-secondary { + color: #32db64; + background-color: transparent; +} + +.toolbar-wp-light .bar-button-secondary-wp:hover:not(.disable-hover), +.toolbar-wp-light .bar-button-clear-wp-secondary:hover:not(.disable-hover), +.toolbar-wp-light .bar-button-wp-secondary:hover:not(.disable-hover) { + color: #32db64; +} + +.toolbar-wp-light .bar-button-outline-wp-secondary { + border-color: #2ec95c; + color: #2ec95c; + background-color: transparent; +} + +.toolbar-wp-light .bar-button-outline-wp-secondary.activated { + color: #fff; + background-color: #2ec95c; +} + +.toolbar-wp-light .bar-button-solid-wp-secondary { + color: #fff; + background-color: #32db64; +} + +.toolbar-wp-light .bar-button-solid-wp-secondary.activated { + color: #fff; + background-color: #2ec95c; +} + +.toolbar-wp-light .bar-button-danger-wp, +.toolbar-wp-light .bar-button-clear-wp-danger, +.toolbar-wp-light .bar-button-wp-danger { + color: #f53d3d; + background-color: transparent; +} + +.toolbar-wp-light .bar-button-danger-wp:hover:not(.disable-hover), +.toolbar-wp-light .bar-button-clear-wp-danger:hover:not(.disable-hover), +.toolbar-wp-light .bar-button-wp-danger:hover:not(.disable-hover) { + color: #f53d3d; +} + +.toolbar-wp-light .bar-button-outline-wp-danger { + border-color: #e13838; + color: #e13838; + background-color: transparent; +} + +.toolbar-wp-light .bar-button-outline-wp-danger.activated { + color: #fff; + background-color: #e13838; +} + +.toolbar-wp-light .bar-button-solid-wp-danger { + color: #fff; + background-color: #f53d3d; +} + +.toolbar-wp-light .bar-button-solid-wp-danger.activated { + color: #fff; + background-color: #e13838; +} + +.toolbar-wp-light .bar-button-light-wp, +.toolbar-wp-light .bar-button-clear-wp-light, +.toolbar-wp-light .bar-button-wp-light { + color: #f4f4f4; + background-color: transparent; +} + +.toolbar-wp-light .bar-button-light-wp:hover:not(.disable-hover), +.toolbar-wp-light .bar-button-clear-wp-light:hover:not(.disable-hover), +.toolbar-wp-light .bar-button-wp-light:hover:not(.disable-hover) { + color: #f4f4f4; +} + +.toolbar-wp-light .bar-button-outline-wp-light { + border-color: #e0e0e0; + color: #e0e0e0; + background-color: transparent; +} + +.toolbar-wp-light .bar-button-outline-wp-light.activated { + color: #000; + background-color: #e0e0e0; +} + +.toolbar-wp-light .bar-button-solid-wp-light { + color: #000; + background-color: #f4f4f4; +} + +.toolbar-wp-light .bar-button-solid-wp-light.activated { + color: #000; + background-color: #e0e0e0; +} + +.toolbar-wp-light .bar-button-dark-wp, +.toolbar-wp-light .bar-button-clear-wp-dark, +.toolbar-wp-light .bar-button-wp-dark { + color: #222; + background-color: transparent; +} + +.toolbar-wp-light .bar-button-dark-wp:hover:not(.disable-hover), +.toolbar-wp-light .bar-button-clear-wp-dark:hover:not(.disable-hover), +.toolbar-wp-light .bar-button-wp-dark:hover:not(.disable-hover) { + color: #222; +} + +.toolbar-wp-light .bar-button-outline-wp-dark { + border-color: #343434; + color: #343434; + background-color: transparent; +} + +.toolbar-wp-light .bar-button-outline-wp-dark.activated { + color: #fff; + background-color: #343434; +} + +.toolbar-wp-light .bar-button-solid-wp-dark { + color: #fff; + background-color: #222; +} + +.toolbar-wp-light .bar-button-solid-wp-dark.activated { + color: #fff; + background-color: #343434; +} + +.bar-button-light-wp, +.bar-button-clear-wp-light, +.bar-button-wp-light { + color: #f4f4f4; + background-color: transparent; +} + +.bar-button-light-wp:hover:not(.disable-hover), +.bar-button-clear-wp-light:hover:not(.disable-hover), +.bar-button-wp-light:hover:not(.disable-hover) { + color: #f4f4f4; +} + +.bar-button-outline-wp-light { + border-color: #e0e0e0; + color: #e0e0e0; + background-color: transparent; +} + +.bar-button-outline-wp-light.activated { + color: #000; + background-color: #e0e0e0; +} + +.bar-button-solid-wp-light { + color: #000; + background-color: #f4f4f4; +} + +.bar-button-solid-wp-light.activated { + color: #000; + background-color: #e0e0e0; +} + +.toolbar-wp-dark .toolbar-background-wp { + background: #222; +} + +.toolbar-wp-dark .bar-button-clear-wp, +.toolbar-wp-dark .bar-button-default-wp, +.toolbar-wp-dark .bar-button-outline-wp, +.toolbar-wp-dark .toolbar-title-wp { + color: #fff; +} + +.toolbar-wp-dark .bar-button-outline-wp { + border-color: #fff; +} + +.toolbar-wp-dark .bar-button-primary-wp, +.toolbar-wp-dark .bar-button-clear-wp-primary, +.toolbar-wp-dark .bar-button-wp-primary { + color: #387ef5; + background-color: transparent; +} + +.toolbar-wp-dark .bar-button-primary-wp:hover:not(.disable-hover), +.toolbar-wp-dark .bar-button-clear-wp-primary:hover:not(.disable-hover), +.toolbar-wp-dark .bar-button-wp-primary:hover:not(.disable-hover) { + color: #387ef5; +} + +.toolbar-wp-dark .bar-button-outline-wp-primary { + border-color: #3474e1; + color: #3474e1; + background-color: transparent; +} + +.toolbar-wp-dark .bar-button-outline-wp-primary.activated { + color: #fff; + background-color: #3474e1; +} + +.toolbar-wp-dark .bar-button-solid-wp-primary { + color: #fff; + background-color: #387ef5; +} + +.toolbar-wp-dark .bar-button-solid-wp-primary.activated { + color: #fff; + background-color: #3474e1; +} + +.toolbar-wp-dark .bar-button-secondary-wp, +.toolbar-wp-dark .bar-button-clear-wp-secondary, +.toolbar-wp-dark .bar-button-wp-secondary { + color: #32db64; + background-color: transparent; +} + +.toolbar-wp-dark .bar-button-secondary-wp:hover:not(.disable-hover), +.toolbar-wp-dark .bar-button-clear-wp-secondary:hover:not(.disable-hover), +.toolbar-wp-dark .bar-button-wp-secondary:hover:not(.disable-hover) { + color: #32db64; +} + +.toolbar-wp-dark .bar-button-outline-wp-secondary { + border-color: #2ec95c; + color: #2ec95c; + background-color: transparent; +} + +.toolbar-wp-dark .bar-button-outline-wp-secondary.activated { + color: #fff; + background-color: #2ec95c; +} + +.toolbar-wp-dark .bar-button-solid-wp-secondary { + color: #fff; + background-color: #32db64; +} + +.toolbar-wp-dark .bar-button-solid-wp-secondary.activated { + color: #fff; + background-color: #2ec95c; +} + +.toolbar-wp-dark .bar-button-danger-wp, +.toolbar-wp-dark .bar-button-clear-wp-danger, +.toolbar-wp-dark .bar-button-wp-danger { + color: #f53d3d; + background-color: transparent; +} + +.toolbar-wp-dark .bar-button-danger-wp:hover:not(.disable-hover), +.toolbar-wp-dark .bar-button-clear-wp-danger:hover:not(.disable-hover), +.toolbar-wp-dark .bar-button-wp-danger:hover:not(.disable-hover) { + color: #f53d3d; +} + +.toolbar-wp-dark .bar-button-outline-wp-danger { + border-color: #e13838; + color: #e13838; + background-color: transparent; +} + +.toolbar-wp-dark .bar-button-outline-wp-danger.activated { + color: #fff; + background-color: #e13838; +} + +.toolbar-wp-dark .bar-button-solid-wp-danger { + color: #fff; + background-color: #f53d3d; +} + +.toolbar-wp-dark .bar-button-solid-wp-danger.activated { + color: #fff; + background-color: #e13838; +} + +.toolbar-wp-dark .bar-button-light-wp, +.toolbar-wp-dark .bar-button-clear-wp-light, +.toolbar-wp-dark .bar-button-wp-light { + color: #f4f4f4; + background-color: transparent; +} + +.toolbar-wp-dark .bar-button-light-wp:hover:not(.disable-hover), +.toolbar-wp-dark .bar-button-clear-wp-light:hover:not(.disable-hover), +.toolbar-wp-dark .bar-button-wp-light:hover:not(.disable-hover) { + color: #f4f4f4; +} + +.toolbar-wp-dark .bar-button-outline-wp-light { + border-color: #e0e0e0; + color: #e0e0e0; + background-color: transparent; +} + +.toolbar-wp-dark .bar-button-outline-wp-light.activated { + color: #000; + background-color: #e0e0e0; +} + +.toolbar-wp-dark .bar-button-solid-wp-light { + color: #000; + background-color: #f4f4f4; +} + +.toolbar-wp-dark .bar-button-solid-wp-light.activated { + color: #000; + background-color: #e0e0e0; +} + +.toolbar-wp-dark .bar-button-dark-wp, +.toolbar-wp-dark .bar-button-clear-wp-dark, +.toolbar-wp-dark .bar-button-wp-dark { + color: #222; + background-color: transparent; +} + +.toolbar-wp-dark .bar-button-dark-wp:hover:not(.disable-hover), +.toolbar-wp-dark .bar-button-clear-wp-dark:hover:not(.disable-hover), +.toolbar-wp-dark .bar-button-wp-dark:hover:not(.disable-hover) { + color: #222; +} + +.toolbar-wp-dark .bar-button-outline-wp-dark { + border-color: #343434; + color: #343434; + background-color: transparent; +} + +.toolbar-wp-dark .bar-button-outline-wp-dark.activated { + color: #fff; + background-color: #343434; +} + +.toolbar-wp-dark .bar-button-solid-wp-dark { + color: #fff; + background-color: #222; +} + +.toolbar-wp-dark .bar-button-solid-wp-dark.activated { + color: #fff; + background-color: #343434; +} + +.bar-button-dark-wp, +.bar-button-clear-wp-dark, +.bar-button-wp-dark { + color: #222; + background-color: transparent; +} + +.bar-button-dark-wp:hover:not(.disable-hover), +.bar-button-clear-wp-dark:hover:not(.disable-hover), +.bar-button-wp-dark:hover:not(.disable-hover) { + color: #222; +} + +.bar-button-outline-wp-dark { + border-color: #343434; + color: #343434; + background-color: transparent; +} + +.bar-button-outline-wp-dark.activated { + color: #fff; + background-color: #343434; +} + +.bar-button-solid-wp-dark { + color: #fff; + background-color: #222; +} + +.bar-button-solid-wp-dark.activated { + color: #fff; + background-color: #343434; +} + +.bar-button-strong-wp { + font-weight: bold; +} + +html { + font-size: 62.5%; +} + +a { + background-color: transparent; +} + +.enable-hover a:hover { + opacity: .7; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + margin-top: 1.6rem; + margin-bottom: 1rem; + font-weight: 500; + line-height: 1.2; +} + +[padding] h1:first-child, +[padding] h2:first-child, +[padding] h3:first-child, +[padding] h4:first-child, +[padding] h5:first-child, +[padding] h6:first-child { + margin-top: -.3rem; +} + +h1 + h2, +h1 + h3, +h2 + h3 { + margin-top: -.3rem; +} + +h1 { + margin-top: 2rem; + font-size: 2.6rem; +} + +h2 { + margin-top: 1.8rem; + font-size: 2.4rem; +} + +h3 { + font-size: 2.2rem; +} + +h4 { + font-size: 2rem; +} + +h5 { + font-size: 1.8rem; +} + +h6 { + font-size: 1.6rem; +} + +small { + font-size: 75%; +} + +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} + +sup { + top: -.5em; +} + +sub { + bottom: -.25em; +} + +[text-left] { + text-align: left; +} + +[text-center] { + text-align: center; +} + +[text-right] { + text-align: right; +} + +[text-justify] { + text-align: justify; +} + +[text-nowrap] { + white-space: nowrap; +} + +[text-uppercase] { + text-transform: uppercase; +} + +[text-lowercase] { + text-transform: lowercase; +} + +[text-capitalize] { + text-transform: capitalize; +} + +.text-ios-primary { + color: #387ef5; +} + +.text-ios-secondary { + color: #32db64; +} + +.text-ios-danger { + color: #f53d3d; +} + +.text-ios-light { + color: #f4f4f4; +} + +.text-ios-dark { + color: #222; +} + +.text-md-primary { + color: #387ef5; +} + +.text-md-secondary { + color: #32db64; +} + +.text-md-danger { + color: #f53d3d; +} + +.text-md-light { + color: #f4f4f4; +} + +.text-md-dark { + color: #222; +} + +.text-wp-primary { + color: #387ef5; +} + +.text-wp-secondary { + color: #32db64; +} + +.text-wp-danger { + color: #f53d3d; +} + +.text-wp-light { + color: #f4f4f4; +} + +.text-wp-dark { + color: #222; +} + +.virtual-loading { + opacity: 0; +} + +.virtual-scroll { + position: relative; + contain: content; +} + +.virtual-scroll .virtual-position, +.virtual-scroll .virtual-position.item { + position: absolute; + top: 0; + left: 0; + transition-duration: 0ms; + contain: content; +} + +.virtual-scroll .virtual-last { + display: none; +} + +.ios ion-nav > .ion-page > .toolbar.statusbar-padding:first-child, +.ios ion-nav > .ion-page > ion-header > .toolbar.statusbar-padding:first-child, +.ios ion-tab > .ion-page > ion-header > .toolbar.statusbar-padding:first-child, +.ios ion-tabs > .ion-page.tab-subpage > ion-header > .toolbar.statusbar-padding:first-child, +.ios ion-menu > .menu-inner > .toolbar.statusbar-padding:first-child, +.ios ion-menu > .menu-inner > ion-header > .toolbar.statusbar-padding:first-child { + padding-top: calc(20px + 4px); + min-height: calc(44px + 20px); +} + +.ios ion-nav > .ion-page > ion-content.statusbar-padding:first-child .scroll-content, +.ios ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content, +.ios ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content, +.ios ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child .scroll-content, +.ios ion-menu > .menu-inner > ion-content.statusbar-padding:first-child .scroll-content, +.ios ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child .scroll-content { + padding-top: 20px; +} + +.ios ion-nav > .ion-page > ion-content.statusbar-padding:first-child[padding] .scroll-content, +.ios ion-nav > .ion-page > ion-content.statusbar-padding:first-child[padding-top] .scroll-content, +.ios ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content, +.ios ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content, +.ios ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content, +.ios ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content, +.ios ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content, +.ios ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content, +.ios ion-menu > .menu-inner > ion-content.statusbar-padding:first-child[padding] .scroll-content, +.ios ion-menu > .menu-inner > ion-content.statusbar-padding:first-child[padding-top] .scroll-content, +.ios ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content, +.ios ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content { + padding-top: calc(16px + 20px); +} + +.ios ion-nav > .ion-page > .toolbar.statusbar-padding:first-child ion-segment, +.ios ion-nav > .ion-page > .toolbar.statusbar-padding:first-child ion-title, +.ios ion-nav > .ion-page > ion-header > .toolbar.statusbar-padding:first-child ion-segment, +.ios ion-nav > .ion-page > ion-header > .toolbar.statusbar-padding:first-child ion-title, +.ios ion-tab > .ion-page > ion-header > .toolbar.statusbar-padding:first-child ion-segment, +.ios ion-tab > .ion-page > ion-header > .toolbar.statusbar-padding:first-child ion-title, +.ios ion-tabs > .ion-page.tab-subpage > ion-header > .toolbar.statusbar-padding:first-child ion-segment, +.ios ion-tabs > .ion-page.tab-subpage > ion-header > .toolbar.statusbar-padding:first-child ion-title, +.ios ion-menu > .menu-inner > .toolbar.statusbar-padding:first-child ion-segment, +.ios ion-menu > .menu-inner > .toolbar.statusbar-padding:first-child ion-title, +.ios ion-menu > .menu-inner > ion-header > .toolbar.statusbar-padding:first-child ion-segment, +.ios ion-menu > .menu-inner > ion-header > .toolbar.statusbar-padding:first-child ion-title { + padding-top: 20px; + height: calc(44px + 20px); + min-height: calc(44px + 20px); +} + +@media only screen and (max-width: 767px) { + .ios .modal-wrapper > .ion-page > ion-header > .toolbar.statusbar-padding:first-child { + padding-top: calc(20px + 4px); + min-height: calc(44px + 20px); + } + .ios .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content { + padding-top: 20px; + } + .ios .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content, + .ios .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content { + padding-top: calc(16px + 20px); + } + .ios .modal-wrapper > .ion-page > ion-header > .toolbar.statusbar-padding:first-child ion-segment, + .ios .modal-wrapper > .ion-page > ion-header > .toolbar.statusbar-padding:first-child ion-title { + padding-top: 20px; + height: calc(44px + 20px); + min-height: calc(44px + 20px); + } +} + +.md ion-nav > .ion-page > .toolbar.statusbar-padding:first-child, +.md ion-nav > .ion-page > ion-header > .toolbar.statusbar-padding:first-child, +.md ion-tab > .ion-page > ion-header > .toolbar.statusbar-padding:first-child, +.md ion-tabs > .ion-page.tab-subpage > ion-header > .toolbar.statusbar-padding:first-child, +.md ion-menu > .menu-inner > .toolbar.statusbar-padding:first-child, +.md ion-menu > .menu-inner > ion-header > .toolbar.statusbar-padding:first-child { + padding-top: calc(20px + 4px); + min-height: calc(56px + 20px); +} + +.md ion-nav > .ion-page > ion-content.statusbar-padding:first-child .scroll-content, +.md ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content, +.md ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content, +.md ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child .scroll-content, +.md ion-menu > .menu-inner > ion-content.statusbar-padding:first-child .scroll-content, +.md ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child .scroll-content { + padding-top: 20px; +} + +.md ion-nav > .ion-page > ion-content.statusbar-padding:first-child[padding] .scroll-content, +.md ion-nav > .ion-page > ion-content.statusbar-padding:first-child[padding-top] .scroll-content, +.md ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content, +.md ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content, +.md ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content, +.md ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content, +.md ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content, +.md ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content, +.md ion-menu > .menu-inner > ion-content.statusbar-padding:first-child[padding] .scroll-content, +.md ion-menu > .menu-inner > ion-content.statusbar-padding:first-child[padding-top] .scroll-content, +.md ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content, +.md ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content { + padding-top: calc(16px + 20px); +} + +@media only screen and (max-width: 767px) { + .md .modal-wrapper > .ion-page > ion-header > .toolbar.statusbar-padding:first-child { + padding-top: calc(20px + 4px); + min-height: calc(56px + 20px); + } + .md .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content { + padding-top: 20px; + } + .md .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content, + .md .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content { + padding-top: calc(16px + 20px); + } +} + +.wp ion-nav > .ion-page > .toolbar.statusbar-padding:first-child, +.wp ion-nav > .ion-page > ion-header > .toolbar.statusbar-padding:first-child, +.wp ion-tab > .ion-page > ion-header > .toolbar.statusbar-padding:first-child, +.wp ion-tabs > .ion-page.tab-subpage > ion-header > .toolbar.statusbar-padding:first-child, +.wp ion-menu > .menu-inner > .toolbar.statusbar-padding:first-child, +.wp ion-menu > .menu-inner > ion-header > .toolbar.statusbar-padding:first-child { + padding-top: calc(20px + 4px); + min-height: calc(46px + 20px); +} + +.wp ion-nav > .ion-page > ion-content.statusbar-padding:first-child .scroll-content, +.wp ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content, +.wp ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content, +.wp ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child .scroll-content, +.wp ion-menu > .menu-inner > ion-content.statusbar-padding:first-child .scroll-content, +.wp ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child .scroll-content { + padding-top: 20px; +} + +.wp ion-nav > .ion-page > ion-content.statusbar-padding:first-child[padding] .scroll-content, +.wp ion-nav > .ion-page > ion-content.statusbar-padding:first-child[padding-top] .scroll-content, +.wp ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content, +.wp ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content, +.wp ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content, +.wp ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content, +.wp ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content, +.wp ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content, +.wp ion-menu > .menu-inner > ion-content.statusbar-padding:first-child[padding] .scroll-content, +.wp ion-menu > .menu-inner > ion-content.statusbar-padding:first-child[padding-top] .scroll-content, +.wp ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content, +.wp ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content { + padding-top: calc(16px + 20px); +} + +@media only screen and (max-width: 767px) { + .wp .modal-wrapper > .ion-page > ion-header > .toolbar.statusbar-padding:first-child { + padding-top: calc(20px + 4px); + min-height: calc(46px + 20px); + } + .wp .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content { + padding-top: 20px; + } + .wp .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content, + .wp .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content { + padding-top: calc(16px + 20px); + } +} + +page-recipes .recipe-item ion-thumbnail { + min-width: 6rem; +} + +page-recipes .recipe-item ion-thumbnail img { + width: auto; + margin: auto; +} + +page-recipes .recipe-item ion-label { + white-space: normal; + text-overflow: clip; + overflow: visible; +} + +page-recipes .feeling-lucky { + padding-left: 0px; +} + +page-recipes .feeling-lucky ion-thumbnail { + margin: 15px 6px 0px 6px !important; +} diff --git a/client app/www/build/main.css.map b/client app/www/build/main.css.map new file mode 100644 index 0000000..ec747fa --- /dev/null +++ b/client app/www/build/main.css.map @@ -0,0 +1 @@ +null \ No newline at end of file diff --git a/client app/www/build/main.js b/client app/www/build/main.js new file mode 100644 index 0000000..def9c20 --- /dev/null +++ b/client app/www/build/main.js @@ -0,0 +1,123428 @@ +/******/ (function(modules) { // webpackBootstrap +/******/ // The module cache +/******/ var installedModules = {}; +/******/ +/******/ // The require function +/******/ function __webpack_require__(moduleId) { +/******/ +/******/ // Check if module is in cache +/******/ if(installedModules[moduleId]) +/******/ return installedModules[moduleId].exports; +/******/ +/******/ // Create a new module (and put it into the cache) +/******/ var module = installedModules[moduleId] = { +/******/ i: moduleId, +/******/ l: false, +/******/ exports: {} +/******/ }; +/******/ +/******/ // Execute the module function +/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); +/******/ +/******/ // Flag the module as loaded +/******/ module.l = true; +/******/ +/******/ // Return the exports of the module +/******/ return module.exports; +/******/ } +/******/ +/******/ +/******/ // expose the modules object (__webpack_modules__) +/******/ __webpack_require__.m = modules; +/******/ +/******/ // expose the module cache +/******/ __webpack_require__.c = installedModules; +/******/ +/******/ // identity function for calling harmony imports with the correct context +/******/ __webpack_require__.i = function(value) { return value; }; +/******/ +/******/ // define getter function for harmony exports +/******/ __webpack_require__.d = function(exports, name, getter) { +/******/ if(!__webpack_require__.o(exports, name)) { +/******/ Object.defineProperty(exports, name, { +/******/ configurable: false, +/******/ enumerable: true, +/******/ get: getter +/******/ }); +/******/ } +/******/ }; +/******/ +/******/ // getDefaultExport function for compatibility with non-harmony modules +/******/ __webpack_require__.n = function(module) { +/******/ var getter = module && module.__esModule ? +/******/ function getDefault() { return module['default']; } : +/******/ function getModuleExports() { return module; }; +/******/ __webpack_require__.d(getter, 'a', getter); +/******/ return getter; +/******/ }; +/******/ +/******/ // Object.prototype.hasOwnProperty.call +/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; +/******/ +/******/ // __webpack_public_path__ +/******/ __webpack_require__.p = "build/"; +/******/ +/******/ // Load entry module and return exports +/******/ return __webpack_require__(__webpack_require__.s = 925); +/******/ }) +/************************************************************************/ +/******/ ([ +/* 0 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__src_core__ = __webpack_require__(575); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "a", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["a"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "b", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["b"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "c", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["c"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "d", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["d"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "e", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["e"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "f", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["f"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "g", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["g"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "h", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["h"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "i", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["i"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "j", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["j"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "k", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["k"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "l", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["l"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "m", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["m"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "n", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["n"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "o", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["o"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "p", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["p"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "q", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["q"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "r", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["r"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "s", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["s"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "t", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["t"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "u", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["u"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "v", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["v"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "w", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["w"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "x", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["x"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "y", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["y"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "z", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["z"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "A", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["A"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "B", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["B"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "C", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["C"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "D", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["D"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "E", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["E"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "F", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["F"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "G", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["G"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "H", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["H"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "I", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["I"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "J", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["J"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "K", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["K"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "L", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["L"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "M", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["M"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "N", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["N"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "O", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["O"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "P", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["P"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["Q"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "R", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["R"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "S", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["S"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "T", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["T"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "U", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["U"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "V", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["V"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "W", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["W"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "X", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["X"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["Y"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["Z"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "_0", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["_0"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "_1", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["_1"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "_2", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["_2"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "_3", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["_3"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "_4", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["_4"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "_5", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["_5"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "_6", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["_6"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "_7", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["_7"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "_8", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["_8"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "_9", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["_9"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "_10", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["_10"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "_11", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["_11"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "_12", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["_12"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "_13", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["_13"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "_14", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["_14"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "_15", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["_15"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "_16", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["_16"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "_17", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["_17"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "_18", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["_18"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "_19", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["_19"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "_20", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["_20"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "_21", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["_21"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "_22", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["_22"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "_23", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["_23"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "_24", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["_24"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "_25", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["_25"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "_26", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["_26"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "_27", function() { return __WEBPACK_IMPORTED_MODULE_0__src_core__["_27"]; }); +/** + * @license + * Copyright Google Inc. All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */ +/** + * @module + * @description + * Entry point for all public APIs of the core package. + */ + +//# sourceMappingURL=index.js.map + +/***/ }), +/* 1 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var root_1 = __webpack_require__(25); +var toSubscriber_1 = __webpack_require__(923); +var observable_1 = __webpack_require__(142); +/** + * A representation of any set of values over any amount of time. This the most basic building block + * of RxJS. + * + * @class Observable + */ +var Observable = (function () { + /** + * @constructor + * @param {Function} subscribe the function that is called when the Observable is + * initially subscribed to. This function is given a Subscriber, to which new values + * can be `next`ed, or an `error` method can be called to raise an error, or + * `complete` can be called to notify of a successful completion. + */ + function Observable(subscribe) { + this._isScalar = false; + if (subscribe) { + this._subscribe = subscribe; + } + } + /** + * Creates a new Observable, with this Observable as the source, and the passed + * operator defined as the new observable's operator. + * @method lift + * @param {Operator} operator the operator defining the operation to take on the observable + * @return {Observable} a new observable with the Operator applied + */ + Observable.prototype.lift = function (operator) { + var observable = new Observable(); + observable.source = this; + observable.operator = operator; + return observable; + }; + /** + * Registers handlers for handling emitted values, error and completions from the observable, and + * executes the observable's subscriber function, which will take action to set up the underlying data stream + * @method subscribe + * @param {PartialObserver|Function} observerOrNext (optional) either an observer defining all functions to be called, + * or the first of three possible handlers, which is the handler for each value emitted from the observable. + * @param {Function} error (optional) a handler for a terminal event resulting from an error. If no error handler is provided, + * the error will be thrown as unhandled + * @param {Function} complete (optional) a handler for a terminal event resulting from successful completion. + * @return {ISubscription} a subscription reference to the registered handlers + */ + Observable.prototype.subscribe = function (observerOrNext, error, complete) { + var operator = this.operator; + var sink = toSubscriber_1.toSubscriber(observerOrNext, error, complete); + if (operator) { + operator.call(sink, this); + } + else { + sink.add(this._subscribe(sink)); + } + if (sink.syncErrorThrowable) { + sink.syncErrorThrowable = false; + if (sink.syncErrorThrown) { + throw sink.syncErrorValue; + } + } + return sink; + }; + /** + * @method forEach + * @param {Function} next a handler for each value emitted by the observable + * @param {PromiseConstructor} [PromiseCtor] a constructor function used to instantiate the Promise + * @return {Promise} a promise that either resolves on observable completion or + * rejects with the handled error + */ + Observable.prototype.forEach = function (next, PromiseCtor) { + var _this = this; + if (!PromiseCtor) { + if (root_1.root.Rx && root_1.root.Rx.config && root_1.root.Rx.config.Promise) { + PromiseCtor = root_1.root.Rx.config.Promise; + } + else if (root_1.root.Promise) { + PromiseCtor = root_1.root.Promise; + } + } + if (!PromiseCtor) { + throw new Error('no Promise impl found'); + } + return new PromiseCtor(function (resolve, reject) { + var subscription = _this.subscribe(function (value) { + if (subscription) { + // if there is a subscription, then we can surmise + // the next handling is asynchronous. Any errors thrown + // need to be rejected explicitly and unsubscribe must be + // called manually + try { + next(value); + } + catch (err) { + reject(err); + subscription.unsubscribe(); + } + } + else { + // if there is NO subscription, then we're getting a nexted + // value synchronously during subscription. We can just call it. + // If it errors, Observable's `subscribe` will ensure the + // unsubscription logic is called, then synchronously rethrow the error. + // After that, Promise will trap the error and send it + // down the rejection path. + next(value); + } + }, reject, resolve); + }); + }; + Observable.prototype._subscribe = function (subscriber) { + return this.source.subscribe(subscriber); + }; + /** + * An interop point defined by the es7-observable spec https://github.com/zenparsing/es-observable + * @method Symbol.observable + * @return {Observable} this instance of the observable + */ + Observable.prototype[observable_1.$$observable] = function () { + return this; + }; + // HACK: Since TypeScript inherits static properties too, we have to + // fight against TypeScript here so Subject can have a different static create signature + /** + * Creates a new cold Observable by calling the Observable constructor + * @static true + * @owner Observable + * @method create + * @param {Function} subscribe? the subscriber function to be passed to the Observable constructor + * @return {Observable} a new cold observable + */ + Observable.create = function (subscribe) { + return new Observable(subscribe); + }; + return Observable; +}()); +exports.Observable = Observable; +//# sourceMappingURL=Observable.js.map + +/***/ }), +/* 2 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__util__ = __webpack_require__(646); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_rxjs_Observable__ = __webpack_require__(1); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_rxjs_Observable___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_rxjs_Observable__); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return getPlugin; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return pluginWarn; }); +/* unused harmony export cordovaWarn */ +/* harmony export (immutable) */ __webpack_exports__["h"] = getPromise; +/* unused harmony export wrap */ +/* harmony export (immutable) */ __webpack_exports__["b"] = Plugin; +/* harmony export (immutable) */ __webpack_exports__["a"] = Cordova; +/* harmony export (immutable) */ __webpack_exports__["d"] = CordovaInstance; +/* harmony export (immutable) */ __webpack_exports__["c"] = CordovaProperty; +/* harmony export (immutable) */ __webpack_exports__["f"] = InstanceProperty; +/* harmony export (immutable) */ __webpack_exports__["i"] = CordovaFunctionOverride; + + +/** + * @private + * @param pluginRef + * @returns {null|*} + */ +var getPlugin = function (pluginRef) { + return __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__util__["a" /* get */])(window, pluginRef); +}; +/** + * @private + * @param pluginObj + * @param method + */ +var pluginWarn = function (pluginObj, method) { + var pluginName = pluginObj.pluginName, plugin = pluginObj.plugin; + if (method) { + console.warn('Native: tried calling ' + pluginName + '.' + method + ', but the ' + pluginName + ' plugin is not installed.'); + } + else { + console.warn('Native: tried accessing the ' + pluginName + ' plugin but it\'s not installed.'); + } + console.warn('Install the ' + pluginName + ' plugin: \'ionic plugin add ' + plugin + '\''); +}; +/** + * @private + * @param pluginName + * @param method + */ +var cordovaWarn = function (pluginName, method) { + if (method) { + console.warn('Native: tried calling ' + pluginName + '.' + method + ', but Cordova is not available. Make sure to include cordova.js or run in a device/simulator'); + } + else { + console.warn('Native: tried accessing the ' + pluginName + ' plugin but Cordova is not available. Make sure to include cordova.js or run in a device/simulator'); + } +}; +function setIndex(args, opts, resolve, reject) { + if (opts === void 0) { opts = {}; } + // ignore resolve and reject in case sync + if (opts.sync) { + return args; + } + // If the plugin method expects myMethod(success, err, options) + if (opts.callbackOrder === 'reverse') { + // Get those arguments in the order [resolve, reject, ...restOfArgs] + args.unshift(reject); + args.unshift(resolve); + } + else if (opts.callbackStyle === 'node') { + args.push(function (err, result) { + if (err) { + reject(err); + } + else { + resolve(result); + } + }); + } + else if (opts.callbackStyle === 'object' && opts.successName && opts.errorName) { + var obj = {}; + obj[opts.successName] = resolve; + obj[opts.errorName] = reject; + args.push(obj); + } + else if (typeof opts.successIndex !== 'undefined' || typeof opts.errorIndex !== 'undefined') { + var setSuccessIndex = function () { + // If we've specified a success/error index + if (opts.successIndex > args.length) { + args[opts.successIndex] = resolve; + } + else { + args.splice(opts.successIndex, 0, resolve); + } + }; + var setErrorIndex = function () { + // We don't want that the reject cb gets spliced into the position of an optional argument that has not been defined and thus causing non expected behaviour. + if (opts.errorIndex > args.length) { + args[opts.errorIndex] = reject; // insert the reject fn at the correct specific index + } + else { + args.splice(opts.errorIndex, 0, reject); // otherwise just splice it into the array + } + }; + if (opts.successIndex > opts.errorIndex) { + setErrorIndex(); + setSuccessIndex(); + } + else { + setSuccessIndex(); + setErrorIndex(); + } + } + else { + // Otherwise, let's tack them on to the end of the argument list + // which is 90% of cases + args.push(resolve); + args.push(reject); + } + return args; +} +function callCordovaPlugin(pluginObj, methodName, args, opts, resolve, reject) { + if (opts === void 0) { opts = {}; } + // Try to figure out where the success/error callbacks need to be bound + // to our promise resolve/reject handlers. + args = setIndex(args, opts, resolve, reject); + var pluginInstance = getPlugin(pluginObj.pluginRef); + if (!pluginInstance) { + // Do this check in here in the case that the Web API for this plugin is available (for example, Geolocation). + if (!window.cordova) { + cordovaWarn(pluginObj.pluginName, methodName); + return { + error: 'cordova_not_available' + }; + } + pluginWarn(pluginObj, methodName); + return { + error: 'plugin_not_installed' + }; + } + // TODO: Illegal invocation needs window context + return __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__util__["a" /* get */])(window, pluginObj.pluginRef)[methodName].apply(pluginInstance, args); +} +/** + * @private + */ +function getPromise(cb) { + var tryNativePromise = function () { + if (window.Promise) { + return new Promise(function (resolve, reject) { + cb(resolve, reject); + }); + } + else { + console.error('No Promise support or polyfill found. To enable Ionic Native support, please add the es6-promise polyfill before this script, or run with a library like Angular 1/2 or on a recent browser.'); + } + }; + if (window.angular) { + var injector = window.angular.element(document.querySelector('[ng-app]') || document.body).injector(); + if (injector) { + var $q = injector.get('$q'); + return $q(function (resolve, reject) { + cb(resolve, reject); + }); + } + else { + console.warn('Angular 1 was detected but $q couldn\'t be retrieved. This is usually when the app is not bootstrapped on the html or body tag. Falling back to native promises which won\'t trigger an automatic digest when promises resolve.'); + return tryNativePromise(); + } + } + else { + return tryNativePromise(); + } +} +function wrapPromise(pluginObj, methodName, args, opts) { + if (opts === void 0) { opts = {}; } + var pluginResult, rej; + var p = getPromise(function (resolve, reject) { + pluginResult = callCordovaPlugin(pluginObj, methodName, args, opts, resolve, reject); + rej = reject; + }); + // Angular throws an error on unhandled rejection, but in this case we have already printed + // a warning that Cordova is undefined or the plugin is uninstalled, so there is no reason + // to error + if (pluginResult && pluginResult.error) { + p.catch(function () { }); + rej(pluginResult.error); + } + return p; +} +function wrapOtherPromise(pluginObj, methodName, args, opts) { + if (opts === void 0) { opts = {}; } + return getPromise(function (resolve, reject) { + var pluginResult = callCordovaPlugin(pluginObj, methodName, args, opts); + if (pluginResult && pluginResult.error) { + reject(pluginResult.error); + } + pluginResult.then(resolve).catch(reject); + }); +} +function wrapObservable(pluginObj, methodName, args, opts) { + if (opts === void 0) { opts = {}; } + return new __WEBPACK_IMPORTED_MODULE_1_rxjs_Observable__["Observable"](function (observer) { + var pluginResult = callCordovaPlugin(pluginObj, methodName, args, opts, observer.next.bind(observer), observer.error.bind(observer)); + if (pluginResult && pluginResult.error) { + observer.error(pluginResult.error); + } + return function () { + try { + if (opts.clearFunction) { + if (opts.clearWithArgs) { + return __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__util__["a" /* get */])(window, pluginObj.pluginRef)[opts.clearFunction].apply(pluginObj, args); + } + return __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__util__["a" /* get */])(window, pluginObj.pluginRef)[opts.clearFunction].call(pluginObj, pluginResult); + } + } + catch (e) { + console.warn('Unable to clear the previous observable watch for', pluginObj.pluginName, methodName); + console.error(e); + } + }; + }); +} +function callInstance(pluginObj, methodName, args, opts, resolve, reject) { + if (opts === void 0) { opts = {}; } + args = setIndex(args, opts, resolve, reject); + return pluginObj._objectInstance[methodName].apply(pluginObj._objectInstance, args); +} +function wrapInstance(pluginObj, methodName, opts) { + if (opts === void 0) { opts = {}; } + return function () { + var args = []; + for (var _i = 0; _i < arguments.length; _i++) { + args[_i - 0] = arguments[_i]; + } + if (opts.sync) { + // Sync doesn't wrap the plugin with a promise or observable, it returns the result as-is + return callInstance(pluginObj, methodName, args, opts); + } + else if (opts.observable) { + return new __WEBPACK_IMPORTED_MODULE_1_rxjs_Observable__["Observable"](function (observer) { + var pluginResult = callInstance(pluginObj, methodName, args, opts, observer.next.bind(observer), observer.error.bind(observer)); + return function () { + try { + if (opts.clearWithArgs) { + return pluginObj._objectInstance[opts.clearFunction].apply(pluginObj._objectInstance, args); + } + return pluginObj._objectInstance[opts.clearFunction].call(pluginObj, pluginResult); + } + catch (e) { + console.warn('Unable to clear the previous observable watch for', pluginObj.pluginName, methodName); + console.error(e); + } + }; + }); + } + else if (opts.otherPromise) { + return getPromise(function (resolve, reject) { + var result = callInstance(pluginObj, methodName, args, opts, resolve, reject); + result.then(resolve, reject); + }); + } + else { + return getPromise(function (resolve, reject) { + callInstance(pluginObj, methodName, args, opts, resolve, reject); + }); + } + }; +} +/** + * Wrap the event with an observable + * @param event + * @returns {Observable} + */ +function wrapEventObservable(event) { + return new __WEBPACK_IMPORTED_MODULE_1_rxjs_Observable__["Observable"](function (observer) { + window.addEventListener(event, observer.next.bind(observer), false); + return function () { return window.removeEventListener(event, observer.next.bind(observer), false); }; + }); +} +/** + * Certain plugins expect the user to override methods in the plugin. For example, + * window.cordova.plugins.backgroundMode.onactivate = function() { ... }. + * + * Unfortunately, this is brittle and would be better wrapped as an Observable. overrideFunction + * does just this. + */ +function overrideFunction(pluginObj, methodName, args, opts) { + if (opts === void 0) { opts = {}; } + return new __WEBPACK_IMPORTED_MODULE_1_rxjs_Observable__["Observable"](function (observer) { + var pluginInstance = getPlugin(pluginObj.pluginRef); + if (!pluginInstance) { + // Do this check in here in the case that the Web API for this plugin is available (for example, Geolocation). + if (!window.cordova) { + cordovaWarn(pluginObj.pluginName, methodName); + observer.error({ + error: 'cordova_not_available' + }); + } + pluginWarn(pluginObj, methodName); + observer.error({ + error: 'plugin_not_installed' + }); + return; + } + var method = pluginInstance[methodName]; + if (!method) { + observer.error({ + error: 'no_such_method' + }); + observer.complete(); + return; + } + pluginInstance[methodName] = observer.next.bind(observer); + }); +} +/** + * @private + * @param pluginObj + * @param methodName + * @param opts + * @returns {function(...[any]): (undefined|*|Observable|*|*)} + */ +var wrap = function (pluginObj, methodName, opts) { + if (opts === void 0) { opts = {}; } + return function () { + var args = []; + for (var _i = 0; _i < arguments.length; _i++) { + args[_i - 0] = arguments[_i]; + } + if (opts.sync) { + // Sync doesn't wrap the plugin with a promise or observable, it returns the result as-is + return callCordovaPlugin(pluginObj, methodName, args, opts); + } + else if (opts.observable) { + return wrapObservable(pluginObj, methodName, args, opts); + } + else if (opts.eventObservable && opts.event) { + return wrapEventObservable(opts.event); + } + else if (opts.otherPromise) { + return wrapOtherPromise(pluginObj, methodName, args, opts); + } + else { + return wrapPromise(pluginObj, methodName, args, opts); + } + }; +}; +/** + * @private + * + * Class decorator specifying Plugin metadata. Required for all plugins. + * + * @usage + * ```typescript + * @Plugin({ + * pluginName: 'MyPlugin', + * plugin: 'cordova-plugin-myplugin', + * pluginRef: 'window.myplugin' + * }) + * export class MyPlugin { + * + * // Plugin wrappers, properties, and functions go here ... + * + * } + * ``` + */ +function Plugin(config) { + return function (cls) { + // Add these fields to the class + for (var k in config) { + cls[k] = config[k]; + } + cls['installed'] = function (printWarning) { + return !!getPlugin(config.pluginRef); + }; + cls['getPlugin'] = function () { + return getPlugin(config.pluginRef); + }; + cls['checkInstall'] = function () { + var pluginInstance = getPlugin(config.pluginRef); + if (!pluginInstance) { + pluginWarn(cls); + return false; + } + return true; + }; + return cls; + }; +} +/** + * @private + * + * Wrap a stub function in a call to a Cordova plugin, checking if both Cordova + * and the required plugin are installed. + */ +function Cordova(opts) { + if (opts === void 0) { opts = {}; } + return function (target, methodName, descriptor) { + return { + value: function () { + var args = []; + for (var _i = 0; _i < arguments.length; _i++) { + args[_i - 0] = arguments[_i]; + } + return wrap(this, methodName, opts).apply(this, args); + } + }; + }; +} +/** + * @private + * + * Wrap an instance method + */ +function CordovaInstance(opts) { + if (opts === void 0) { opts = {}; } + return function (target, methodName) { + return { + value: function () { + var args = []; + for (var _i = 0; _i < arguments.length; _i++) { + args[_i - 0] = arguments[_i]; + } + return wrapInstance(this, methodName, opts).apply(this, args); + } + }; + }; +} +/** + * @private + * + * + * Before calling the original method, ensure Cordova and the plugin are installed. + */ +function CordovaProperty(target, key) { + var exists = function () { + var pluginInstance = getPlugin(target.pluginRef); + if (!pluginInstance) { + pluginWarn(target, key); + return false; + } + return true; + }; + Object.defineProperty(target, key, { + get: function () { + if (exists()) { + return getPlugin(target.pluginRef)[key]; + } + else { + return {}; + } + }, + set: function (value) { + if (exists()) { + getPlugin(target.pluginRef)[key] = value; + } + } + }); +} +/** + * @private + * @param target + * @param key + * @constructor + */ +function InstanceProperty(target, key) { + Object.defineProperty(target, key, { + get: function () { + return this._objectInstance[key]; + }, + set: function (value) { + this._objectInstance[key] = value; + } + }); +} +/** + * @private + * + * Wrap a stub function in a call to a Cordova plugin, checking if both Cordova + * and the required plugin are installed. + */ +function CordovaFunctionOverride(opts) { + if (opts === void 0) { opts = {}; } + return function (target, methodName, descriptor) { + return { + value: function () { + var args = []; + for (var _i = 0; _i < arguments.length; _i++) { + args[_i - 0] = arguments[_i]; + } + return overrideFunction(this, methodName, opts); + } + }; + }; +} +//# sourceMappingURL=plugin.js.map + +/***/ }), +/* 3 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony export (immutable) */ __webpack_exports__["g"] = clamp; +/* harmony export (immutable) */ __webpack_exports__["l"] = assign; +/* harmony export (immutable) */ __webpack_exports__["o"] = merge; +/* harmony export (immutable) */ __webpack_exports__["n"] = debounce; +/* harmony export (immutable) */ __webpack_exports__["f"] = defaults; +/* unused harmony export isBoolean */ +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return isString; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return isNumber; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return isFunction; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return isDefined; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return isUndefined; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return isPresent; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return isBlank; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return isObject; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return isArray; }); +/* unused harmony export isPrimitive */ +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return isTrueProperty; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return isCheckedProperty; }); +/* harmony export (immutable) */ __webpack_exports__["q"] = reorderArray; +/* harmony export (immutable) */ __webpack_exports__["d"] = removeArrayItem; +/* harmony export (immutable) */ __webpack_exports__["e"] = swipeShouldReset; +/* unused harmony export assert */ +/* unused harmony export runInDev */ +/** + * Given a min and max, restrict the given number + * to the range. + * @param min the minimum + * @param n the value + * @param max the maximum + */ +function clamp(min, n, max) { + return Math.max(min, Math.min(n, max)); +} +/** + * The assign() method is used to copy the values of all enumerable own + * properties from one or more source objects to a target object. It will + * return the target object. When available, this method will use + * `Object.assign()` under-the-hood. + * @param target The target object + * @param source(s) The source object + */ +function assign() { + var args = []; + for (var _i = 0; _i < arguments.length; _i++) { + args[_i - 0] = arguments[_i]; + } + if (typeof Object.assign !== 'function') { + // use the old-school shallow extend method + return _baseExtend(args[0], [].slice.call(args, 1), false); + } + // use the built in ES6 Object.assign method + return Object.assign.apply(null, args); +} +/** + * Do a deep extend (merge). + * @param dst the destination + * @param ... the param objects + */ +function merge(dst) { + var args = []; + for (var _i = 1; _i < arguments.length; _i++) { + args[_i - 1] = arguments[_i]; + } + return _baseExtend(dst, [].slice.call(arguments, 1), true); +} +function _baseExtend(dst, objs, deep) { + for (var i = 0, ii = objs.length; i < ii; ++i) { + var obj = objs[i]; + if (!obj || !isObject(obj) && !isFunction(obj)) + continue; + var keys = Object.keys(obj); + for (var j = 0, jj = keys.length; j < jj; j++) { + var key = keys[j]; + var src = obj[key]; + if (deep && isObject(src)) { + if (!isObject(dst[key])) + dst[key] = isArray(src) ? [] : {}; + _baseExtend(dst[key], [src], true); + } + else { + dst[key] = src; + } + } + } + return dst; +} +function debounce(fn, wait, immediate) { + if (immediate === void 0) { immediate = false; } + var timeout, args, context, timestamp, result; + return function () { + context = this; + args = arguments; + timestamp = Date.now(); + var later = function () { + var last = Date.now() - timestamp; + if (last < wait) { + timeout = setTimeout(later, wait - last); + } + else { + timeout = null; + if (!immediate) + result = fn.apply(context, args); + } + }; + var callNow = immediate && !timeout; + if (!timeout) { + timeout = setTimeout(later, wait); + } + if (callNow) + result = fn.apply(context, args); + return result; + }; +} +/** + * Apply default arguments if they don't exist in + * the first object. + * @param the destination to apply defaults to. + */ +function defaults(dest) { + var args = []; + for (var _i = 1; _i < arguments.length; _i++) { + args[_i - 1] = arguments[_i]; + } + for (var i = arguments.length - 1; i >= 1; i--) { + var source = arguments[i]; + if (source) { + for (var key in source) { + if (source.hasOwnProperty(key) && !dest.hasOwnProperty(key)) { + dest[key] = source[key]; + } + } + } + } + return dest; +} +var isBoolean = function (val) { return typeof val === 'boolean'; }; +var isString = function (val) { return typeof val === 'string'; }; +var isNumber = function (val) { return typeof val === 'number'; }; +var isFunction = function (val) { return typeof val === 'function'; }; +var isDefined = function (val) { return typeof val !== 'undefined'; }; +var isUndefined = function (val) { return typeof val === 'undefined'; }; +var isPresent = function (val) { return val !== undefined && val !== null; }; +var isBlank = function (val) { return val === undefined || val === null; }; +var isObject = function (val) { return typeof val === 'object'; }; +var isArray = Array.isArray; +var isPrimitive = function (val) { + return isString(val) || isBoolean(val) || (isNumber(val) && !isNaN(val)); +}; +var isTrueProperty = function (val) { + if (typeof val === 'string') { + val = val.toLowerCase().trim(); + return (val === 'true' || val === 'on' || val === ''); + } + return !!val; +}; +var isCheckedProperty = function (a, b) { + if (a === undefined || a === null || a === '') { + return (b === undefined || b === null || b === ''); + } + else if (a === true || a === 'true') { + return (b === true || b === 'true'); + } + else if (a === false || a === 'false') { + return (b === false || b === 'false'); + } + else if (a === 0 || a === '0') { + return (b === 0 || b === '0'); + } + // not using strict comparison on purpose + return (a == b); // tslint:disable-line +}; +/** + * @private + */ +function reorderArray(array, indexes) { + var element = array[indexes.from]; + array.splice(indexes.from, 1); + array.splice(indexes.to, 0, element); + return array; +} +/** + * @private + */ +function removeArrayItem(array, item) { + var index = array.indexOf(item); + return !!~index && !!array.splice(index, 1); +} +/** + * @private + */ +function swipeShouldReset(isResetDirection, isMovingFast, isOnResetZone) { + // The logic required to know when the sliding item should close (openAmount=0) + // depends on three booleans (isCloseDirection, isMovingFast, isOnCloseZone) + // and it ended up being too complicated to be written manually without errors + // so the truth table is attached below: (0=false, 1=true) + // isCloseDirection | isMovingFast | isOnCloseZone || shouldClose + // 0 | 0 | 0 || 0 + // 0 | 0 | 1 || 1 + // 0 | 1 | 0 || 0 + // 0 | 1 | 1 || 0 + // 1 | 0 | 0 || 0 + // 1 | 0 | 1 || 1 + // 1 | 1 | 0 || 1 + // 1 | 1 | 1 || 1 + // The resulting expression was generated by resolving the K-map (Karnaugh map): + var shouldClose = (!isMovingFast && isOnResetZone) || (isResetDirection && isMovingFast); + return shouldClose; +} +var ASSERT_ENABLED = true; +/** + * @private + */ +function _runInDev(fn) { + if (ASSERT_ENABLED === true) { + return fn(); + } +} +function _assert(actual, reason) { + if (!actual && ASSERT_ENABLED === true) { + var message = 'IONIC ASSERT: ' + reason; + console.error(message); + debugger; // tslint:disable-line + throw new Error(message); + } +} + + +//# sourceMappingURL=util.js.map + +/***/ }), +/* 4 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var __extends = (this && this.__extends) || function (d, b) { + for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); +}; +var isFunction_1 = __webpack_require__(237); +var Subscription_1 = __webpack_require__(19); +var Observer_1 = __webpack_require__(649); +var rxSubscriber_1 = __webpack_require__(143); +/** + * Implements the {@link Observer} interface and extends the + * {@link Subscription} class. While the {@link Observer} is the public API for + * consuming the values of an {@link Observable}, all Observers get converted to + * a Subscriber, in order to provide Subscription-like capabilities such as + * `unsubscribe`. Subscriber is a common type in RxJS, and crucial for + * implementing operators, but it is rarely used as a public API. + * + * @class Subscriber + */ +var Subscriber = (function (_super) { + __extends(Subscriber, _super); + /** + * @param {Observer|function(value: T): void} [destinationOrNext] A partially + * defined Observer or a `next` callback function. + * @param {function(e: ?any): void} [error] The `error` callback of an + * Observer. + * @param {function(): void} [complete] The `complete` callback of an + * Observer. + */ + function Subscriber(destinationOrNext, error, complete) { + _super.call(this); + this.syncErrorValue = null; + this.syncErrorThrown = false; + this.syncErrorThrowable = false; + this.isStopped = false; + switch (arguments.length) { + case 0: + this.destination = Observer_1.empty; + break; + case 1: + if (!destinationOrNext) { + this.destination = Observer_1.empty; + break; + } + if (typeof destinationOrNext === 'object') { + if (destinationOrNext instanceof Subscriber) { + this.destination = destinationOrNext; + this.destination.add(this); + } + else { + this.syncErrorThrowable = true; + this.destination = new SafeSubscriber(this, destinationOrNext); + } + break; + } + default: + this.syncErrorThrowable = true; + this.destination = new SafeSubscriber(this, destinationOrNext, error, complete); + break; + } + } + Subscriber.prototype[rxSubscriber_1.$$rxSubscriber] = function () { return this; }; + /** + * A static factory for a Subscriber, given a (potentially partial) definition + * of an Observer. + * @param {function(x: ?T): void} [next] The `next` callback of an Observer. + * @param {function(e: ?any): void} [error] The `error` callback of an + * Observer. + * @param {function(): void} [complete] The `complete` callback of an + * Observer. + * @return {Subscriber} A Subscriber wrapping the (partially defined) + * Observer represented by the given arguments. + */ + Subscriber.create = function (next, error, complete) { + var subscriber = new Subscriber(next, error, complete); + subscriber.syncErrorThrowable = false; + return subscriber; + }; + /** + * The {@link Observer} callback to receive notifications of type `next` from + * the Observable, with a value. The Observable may call this method 0 or more + * times. + * @param {T} [value] The `next` value. + * @return {void} + */ + Subscriber.prototype.next = function (value) { + if (!this.isStopped) { + this._next(value); + } + }; + /** + * The {@link Observer} callback to receive notifications of type `error` from + * the Observable, with an attached {@link Error}. Notifies the Observer that + * the Observable has experienced an error condition. + * @param {any} [err] The `error` exception. + * @return {void} + */ + Subscriber.prototype.error = function (err) { + if (!this.isStopped) { + this.isStopped = true; + this._error(err); + } + }; + /** + * The {@link Observer} callback to receive a valueless notification of type + * `complete` from the Observable. Notifies the Observer that the Observable + * has finished sending push-based notifications. + * @return {void} + */ + Subscriber.prototype.complete = function () { + if (!this.isStopped) { + this.isStopped = true; + this._complete(); + } + }; + Subscriber.prototype.unsubscribe = function () { + if (this.closed) { + return; + } + this.isStopped = true; + _super.prototype.unsubscribe.call(this); + }; + Subscriber.prototype._next = function (value) { + this.destination.next(value); + }; + Subscriber.prototype._error = function (err) { + this.destination.error(err); + this.unsubscribe(); + }; + Subscriber.prototype._complete = function () { + this.destination.complete(); + this.unsubscribe(); + }; + return Subscriber; +}(Subscription_1.Subscription)); +exports.Subscriber = Subscriber; +/** + * We need this JSDoc comment for affecting ESDoc. + * @ignore + * @extends {Ignored} + */ +var SafeSubscriber = (function (_super) { + __extends(SafeSubscriber, _super); + function SafeSubscriber(_parent, observerOrNext, error, complete) { + _super.call(this); + this._parent = _parent; + var next; + var context = this; + if (isFunction_1.isFunction(observerOrNext)) { + next = observerOrNext; + } + else if (observerOrNext) { + context = observerOrNext; + next = observerOrNext.next; + error = observerOrNext.error; + complete = observerOrNext.complete; + if (isFunction_1.isFunction(context.unsubscribe)) { + this.add(context.unsubscribe.bind(context)); + } + context.unsubscribe = this.unsubscribe.bind(this); + } + this._context = context; + this._next = next; + this._error = error; + this._complete = complete; + } + SafeSubscriber.prototype.next = function (value) { + if (!this.isStopped && this._next) { + var _parent = this._parent; + if (!_parent.syncErrorThrowable) { + this.__tryOrUnsub(this._next, value); + } + else if (this.__tryOrSetError(_parent, this._next, value)) { + this.unsubscribe(); + } + } + }; + SafeSubscriber.prototype.error = function (err) { + if (!this.isStopped) { + var _parent = this._parent; + if (this._error) { + if (!_parent.syncErrorThrowable) { + this.__tryOrUnsub(this._error, err); + this.unsubscribe(); + } + else { + this.__tryOrSetError(_parent, this._error, err); + this.unsubscribe(); + } + } + else if (!_parent.syncErrorThrowable) { + this.unsubscribe(); + throw err; + } + else { + _parent.syncErrorValue = err; + _parent.syncErrorThrown = true; + this.unsubscribe(); + } + } + }; + SafeSubscriber.prototype.complete = function () { + if (!this.isStopped) { + var _parent = this._parent; + if (this._complete) { + if (!_parent.syncErrorThrowable) { + this.__tryOrUnsub(this._complete); + this.unsubscribe(); + } + else { + this.__tryOrSetError(_parent, this._complete); + this.unsubscribe(); + } + } + else { + this.unsubscribe(); + } + } + }; + SafeSubscriber.prototype.__tryOrUnsub = function (fn, value) { + try { + fn.call(this._context, value); + } + catch (err) { + this.unsubscribe(); + throw err; + } + }; + SafeSubscriber.prototype.__tryOrSetError = function (parent, fn, value) { + try { + fn.call(this._context, value); + } + catch (err) { + parent.syncErrorValue = err; + parent.syncErrorThrown = true; + return true; + } + return false; + }; + SafeSubscriber.prototype._unsubscribe = function () { + var _parent = this._parent; + this._context = null; + this._parent = null; + _parent.unsubscribe(); + }; + return SafeSubscriber; +}(Subscriber)); +//# sourceMappingURL=Subscriber.js.map + +/***/ }), +/* 5 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core__ = __webpack_require__(0); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__util_util__ = __webpack_require__(3); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return Config; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return ConfigToken; }); +/* harmony export (immutable) */ __webpack_exports__["c"] = setupConfig; + + +/** + * @name Config + * @demo /docs/v2/demos/src/config/ + * @description + * The Config lets you configure your entire app or specific platforms. + * You can set the tab placement, icon mode, animations, and more here. + * + * ```ts + * import { IonicApp, IonicModule } from 'ionic-angular'; + * + * @NgModule({ + * declarations: [ MyApp ], + * imports: [ + * IonicModule.forRoot(MyApp, { + * backButtonText: 'Go Back', + * iconMode: 'ios', + * modalEnter: 'modal-slide-in', + * modalLeave: 'modal-slide-out', + * tabsPlacement: 'bottom', + * pageTransition: 'ios' + * }, {} + * )], + * bootstrap: [IonicApp], + * entryComponents: [ MyApp ], + * providers: [] + * }) + * ``` + * + * + * Config can be overwritten at multiple levels allowing for more granular configuration. + * Below is an example where an app can override any setting we want based on a platform. + * + * ```ts + * import { IonicModule } from 'ionic-angular'; + * + * @NgModule({ + * ... + * imports: [ + * IonicModule.forRoot(MyApp, { + * tabsPlacement: 'bottom', + * platforms: { + * ios: { + * tabsPlacement: 'top', + * } + * } + * }, {} + * )], + * ... + * }) + * ``` + * + * We could also configure these values at a component level. Take `tabsPlacement`, + * we can configure this as a property on our `ion-tabs`. + * + * ```html + * + * + * + * ``` + * + * The last way we could configure is through URL query strings. This is useful for testing + * while in the browser. Simply add `?ionic=` to the url. + * + * ```bash + * http://localhost:8100/?ionicTabsPlacement=bottom + * ``` + * + * Any value can be added to config, and looked up at a later in any component. + * + * ```js + * config.set('ios', 'favoriteColor', 'green'); + * + * // from any page in your app: + * config.get('favoriteColor'); // 'green' when iOS + * ``` + * + * + * A config value can come from anywhere and be anything, but there are default + * values for each mode. The [theming](../../../theming/platform-specific-styles/) + * documentation has a chart of the default mode configuration. The following + * chart displays each property with a description of what it controls. + * + * + * | Config Property | Type | Details | + * |--------------------------|---------------------|--------------------------------------------------------------------------------------------------------------------------------------------------| + * | `activator` | `string` | Used for buttons, changes the effect of pressing on a button. Available options: `"ripple"`, `"highlight"`. | + * | `actionSheetEnter` | `string` | The name of the transition to use while an action sheet is presented. | + * | `actionSheetLeave` | `string` | The name of the transition to use while an action sheet is dismissed. | + * | `alertEnter` | `string` | The name of the transition to use while an alert is presented. | + * | `alertLeave` | `string` | The name of the transition to use while an alert is dismissed. | + * | `backButtonText` | `string` | The text to display by the back button icon in the navbar. | + * | `backButtonIcon` | `string` | The icon to use as the back button icon. | + * | `iconMode` | `string` | The mode to use for all icons throughout the application. Available options: `"ios"`, `"md"` | + * | `loadingEnter` | `string` | The name of the transition to use while a loading indicator is presented. | + * | `loadingLeave` | `string` | The name of the transition to use while a loading indicator is dismissed. | + * | `menuType` | `string` | Type of menu to display. Available options: `"overlay"`, `"reveal"`, `"push"`. | + * | `modalEnter` | `string` | The name of the transition to use while a modal is presented. | + * | `modalLeave` | `string` | The name of the transition to use while a modal is dismiss. | + * | `mode` | `string` | The mode to use throughout the application. | + * | `pageTransition` | `string` | The name of the transition to use while changing pages. | + * | `pickerEnter` | `string` | The name of the transition to use while a picker is presented. | + * | `pickerLeave` | `string` | The name of the transition to use while a picker is dismissed. | + * | `popoverEnter` | `string` | The name of the transition to use while a popover is presented. | + * | `popoverLeave` | `string` | The name of the transition to use while a popover is dismissed. | + * | `spinner` | `string` | The default spinner to use when a name is not defined. | + * | `swipeBackEnabled` | `boolean` | Whether native iOS swipe to go back functionality is enabled. | + * | `tabsHighlight` | `boolean` | Whether to show a highlight line under the tab when it is selected. | + * | `tabsLayout` | `string` | The layout to use for all tabs. Available options: `"icon-top"`, `"icon-left"`, `"icon-right"`, `"icon-bottom"`, `"icon-hide"`, `"title-hide"`. | + * | `tabsPlacement` | `string` | The position of the tabs relative to the content. Available options: `"top"`, `"bottom"` | + * | `tabsHideOnSubPages` | `boolean` | Whether to hide the tabs on child pages or not. If `true` it will not show the tabs on child pages. | + * | `toastEnter` | `string` | The name of the transition to use while a toast is presented. | + * | `toastLeave` | `string` | The name of the transition to use while a toast is dismissed. | + * +**/ +var Config = (function () { + function Config() { + this._c = {}; + this._s = {}; + this._modes = {}; + this._trns = {}; + } + /** + * @private + */ + Config.prototype.init = function (config, queryParams, platform) { + this._s = config && __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util_util__["i" /* isObject */])(config) && !__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util_util__["h" /* isArray */])(config) ? config : {}; + this._qp = queryParams; + this.platform = platform; + }; + /** + * @name get + * @description + * Returns a single config value, given a key. + * + * @param {string} [key] - the key for the config value + * @param {any} [fallbackValue] - a fallback value to use when the config + * value was not found, or is config value is `null`. Fallback value + * defaults to `null`. + */ + Config.prototype.get = function (key, fallbackValue) { + if (fallbackValue === void 0) { fallbackValue = null; } + if (!__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util_util__["j" /* isDefined */])(this._c[key])) { + if (!__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util_util__["j" /* isDefined */])(key)) { + throw 'config key is not defined'; + } + // if the value was already set this will all be skipped + // if there was no user config then it'll check each of + // the user config's platforms, which already contains + // settings from default platform configs + var userPlatformValue = undefined; + var userDefaultValue = this._s[key]; + var userPlatformModeValue = undefined; + var userDefaultModeValue = undefined; + var platformValue = undefined; + var platformModeValue = undefined; + var configObj = null; + if (this.platform) { + var queryStringValue = this._qp.get('ionic' + key); + if (__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util_util__["j" /* isDefined */])(queryStringValue)) { + return this._c[key] = (queryStringValue === 'true' ? true : queryStringValue === 'false' ? false : queryStringValue); + } + // check the platform settings object for this value + // loop though each of the active platforms + // array of active platforms, which also knows the hierarchy, + // with the last one the most important + var activePlatformKeys = this.platform.platforms(); + // loop through all of the active platforms we're on + for (var i = 0, ilen = activePlatformKeys.length; i < ilen; i++) { + // get user defined platform values + if (this._s.platforms) { + configObj = this._s.platforms[activePlatformKeys[i]]; + if (configObj) { + if (__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util_util__["j" /* isDefined */])(configObj[key])) { + userPlatformValue = configObj[key]; + } + configObj = this.getModeConfig(configObj.mode); + if (configObj && __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util_util__["j" /* isDefined */])(configObj[key])) { + userPlatformModeValue = configObj[key]; + } + } + } + // get default platform's setting + configObj = this.platform.getPlatformConfig(activePlatformKeys[i]); + if (configObj && configObj.settings) { + if (__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util_util__["j" /* isDefined */])(configObj.settings[key])) { + // found a setting for this platform + platformValue = configObj.settings[key]; + } + configObj = this.getModeConfig(configObj.settings.mode); + if (configObj && __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util_util__["j" /* isDefined */])(configObj[key])) { + // found setting for this platform's mode + platformModeValue = configObj[key]; + } + } + } + } + configObj = this.getModeConfig(this._s.mode); + if (configObj && __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util_util__["j" /* isDefined */])(configObj[key])) { + userDefaultModeValue = configObj[key]; + } + // cache the value + this._c[key] = __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util_util__["j" /* isDefined */])(userPlatformValue) ? userPlatformValue : + __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util_util__["j" /* isDefined */])(userDefaultValue) ? userDefaultValue : + __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util_util__["j" /* isDefined */])(userPlatformModeValue) ? userPlatformModeValue : + __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util_util__["j" /* isDefined */])(userDefaultModeValue) ? userDefaultModeValue : + __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util_util__["j" /* isDefined */])(platformValue) ? platformValue : + __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util_util__["j" /* isDefined */])(platformModeValue) ? platformModeValue : + null; + } + // return key's value + // either it came directly from the user config + // or it was from the users platform configs + // or it was from the default platform configs + // in that order + var rtnVal = this._c[key]; + if (__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util_util__["k" /* isFunction */])(rtnVal)) { + rtnVal = rtnVal(this.platform); + } + return (rtnVal !== null ? rtnVal : fallbackValue); + }; + /** + * @name getBoolean + * @description + * Same as `get()`, however always returns a boolean value. If the + * value from `get()` is `null`, then it'll return the `fallbackValue` + * which defaults to `false`. Otherwise, `getBoolean()` will return + * if the config value is truthy or not. It also returns `true` if + * the config value was the string value `"true"`. + * @param {string} [key] - the key for the config value + * @param {boolean} [fallbackValue] - a fallback value to use when the config + * value was `null`. Fallback value defaults to `false`. + */ + Config.prototype.getBoolean = function (key, fallbackValue) { + if (fallbackValue === void 0) { fallbackValue = false; } + var val = this.get(key); + if (val === null) { + return fallbackValue; + } + if (typeof val === 'string') { + return val === 'true'; + } + return !!val; + }; + /** + * @name getNumber + * @description + * Same as `get()`, however always returns a number value. Uses `parseFloat()` + * on the value received from `get()`. If the result from the parse is `NaN`, + * then it will return the value passed to `fallbackValue`. If no fallback + * value was provided then it'll default to returning `NaN` when the result + * is not a valid number. + * @param {string} [key] - the key for the config value + * @param {number} [fallbackValue] - a fallback value to use when the config + * value turned out to be `NaN`. Fallback value defaults to `NaN`. + */ + Config.prototype.getNumber = function (key, fallbackValue) { + if (fallbackValue === void 0) { fallbackValue = NaN; } + var val = parseFloat(this.get(key)); + return isNaN(val) ? fallbackValue : val; + }; + /** + * @name set + * @description + * Sets a single config value. + * + * @param {string} [platform] - The platform (either 'ios' or 'android') that the config value should apply to. Leaving this blank will apply the config value to all platforms. + * @param {string} [key] - The key used to look up the value at a later point in time. + * @param {string} [value] - The config value being stored. + */ + Config.prototype.set = function () { + var args = []; + for (var _i = 0; _i < arguments.length; _i++) { + args[_i - 0] = arguments[_i]; + } + var arg0 = args[0]; + var arg1 = args[1]; + switch (args.length) { + case 2: + // set('key', 'value') = set key/value pair + // arg1 = value + this._s[arg0] = arg1; + delete this._c[arg0]; // clear cache + break; + case 3: + // setting('ios', 'key', 'value') = set key/value pair for platform + // arg0 = platform + // arg1 = key + // arg2 = value + this._s.platforms = this._s.platforms || {}; + this._s.platforms[arg0] = this._s.platforms[arg0] || {}; + this._s.platforms[arg0][arg1] = args[2]; + delete this._c[arg1]; // clear cache + break; + } + return this; + }; + /** + * @private + * @name settings() + * @description + */ + Config.prototype.settings = function (arg0, arg1) { + switch (arguments.length) { + case 0: + return this._s; + case 1: + // settings({...}) + this._s = arg0; + this._c = {}; // clear cache + break; + case 2: + // settings('ios', {...}) + this._s.platforms = this._s.platforms || {}; + this._s.platforms[arg0] = arg1; + this._c = {}; // clear cache + break; + } + return this; + }; + /** + * @private + */ + Config.prototype.setModeConfig = function (modeName, modeConfig) { + this._modes[modeName] = modeConfig; + }; + /** + * @private + */ + Config.prototype.getModeConfig = function (modeName) { + return this._modes[modeName] || null; + }; + /** + * @private + */ + Config.prototype.setTransition = function (trnsName, trnsClass) { + this._trns[trnsName] = trnsClass; + }; + /** + * @private + */ + Config.prototype.getTransition = function (trnsName) { + return this._trns[trnsName] || null; + }; + return Config; +}()); +/** + * @private + */ +var ConfigToken = new __WEBPACK_IMPORTED_MODULE_0__angular_core__["i" /* OpaqueToken */]('USERCONFIG'); +/** + * @private + */ +function setupConfig(userConfig, queryParams, platform) { + var config = new Config(); + config.init(userConfig, queryParams, platform); + return config; +} +//# sourceMappingURL=config.js.map + +/***/ }), +/* 6 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* WEBPACK VAR INJECTION */(function(global) {/* unused harmony export scheduleMicroTask */ +/* unused harmony export global */ +/* unused harmony export getTypeNameForDebugging */ +/* harmony export (immutable) */ __webpack_exports__["a"] = isPresent; +/* harmony export (immutable) */ __webpack_exports__["b"] = isBlank; +/* harmony export (immutable) */ __webpack_exports__["c"] = isStrictStringMap; +/* unused harmony export isDate */ +/* harmony export (immutable) */ __webpack_exports__["i"] = stringify; +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return NumberWrapper; }); +/* unused harmony export looseIdentical */ +/* harmony export (immutable) */ __webpack_exports__["e"] = isJsObject; +/* unused harmony export print */ +/* unused harmony export warn */ +/* unused harmony export setValueOnPath */ +/* harmony export (immutable) */ __webpack_exports__["f"] = getSymbolIterator; +/* harmony export (immutable) */ __webpack_exports__["d"] = isPrimitive; +/* harmony export (immutable) */ __webpack_exports__["g"] = escapeRegExp; +/** + * @license + * Copyright Google Inc. All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */ +var globalScope; +if (typeof window === 'undefined') { + if (typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope) { + // TODO: Replace any with WorkerGlobalScope from lib.webworker.d.ts #3492 + globalScope = self; + } + else { + globalScope = global; + } +} +else { + globalScope = window; +} +function scheduleMicroTask(fn) { + Zone.current.scheduleMicroTask('scheduleMicrotask', fn); +} +// Need to declare a new variable for global here since TypeScript +// exports the original value of the symbol. +var _global = globalScope; + +function getTypeNameForDebugging(type) { + return type['name'] || typeof type; +} +// TODO: remove calls to assert in production environment +// Note: Can't just export this and import in in other files +// as `assert` is a reserved keyword in Dart +_global.assert = function assert(condition) { + // TODO: to be fixed properly via #2830, noop for now +}; +function isPresent(obj) { + return obj != null; +} +function isBlank(obj) { + return obj == null; +} +var STRING_MAP_PROTO = Object.getPrototypeOf({}); +function isStrictStringMap(obj) { + return typeof obj === 'object' && obj !== null && Object.getPrototypeOf(obj) === STRING_MAP_PROTO; +} +function isDate(obj) { + return obj instanceof Date && !isNaN(obj.valueOf()); +} +function stringify(token) { + if (typeof token === 'string') { + return token; + } + if (token == null) { + return '' + token; + } + if (token.overriddenName) { + return token.overriddenName; + } + if (token.name) { + return token.name; + } + var res = token.toString(); + var newLineIndex = res.indexOf('\n'); + return newLineIndex === -1 ? res : res.substring(0, newLineIndex); +} +var NumberWrapper = (function () { + function NumberWrapper() { + } + NumberWrapper.parseIntAutoRadix = function (text) { + var result = parseInt(text); + if (isNaN(result)) { + throw new Error('Invalid integer literal when parsing ' + text); + } + return result; + }; + NumberWrapper.isNumeric = function (value) { return !isNaN(value - parseFloat(value)); }; + return NumberWrapper; +}()); +// JS has NaN !== NaN +function looseIdentical(a, b) { + return a === b || typeof a === 'number' && typeof b === 'number' && isNaN(a) && isNaN(b); +} +function isJsObject(o) { + return o !== null && (typeof o === 'function' || typeof o === 'object'); +} +function print(obj) { + console.log(obj); +} +function warn(obj) { + console.warn(obj); +} +function setValueOnPath(global, path, value) { + var parts = path.split('.'); + var obj = global; + while (parts.length > 1) { + var name_1 = parts.shift(); + if (obj.hasOwnProperty(name_1) && obj[name_1] != null) { + obj = obj[name_1]; + } + else { + obj = obj[name_1] = {}; + } + } + if (obj === undefined || obj === null) { + obj = {}; + } + obj[parts.shift()] = value; +} +var _symbolIterator = null; +function getSymbolIterator() { + if (!_symbolIterator) { + if (globalScope.Symbol && Symbol.iterator) { + _symbolIterator = Symbol.iterator; + } + else { + // es6-shim specific logic + var keys = Object.getOwnPropertyNames(Map.prototype); + for (var i = 0; i < keys.length; ++i) { + var key = keys[i]; + if (key !== 'entries' && key !== 'size' && + Map.prototype[key] === Map.prototype['entries']) { + _symbolIterator = key; + } + } + } + } + return _symbolIterator; +} +function isPrimitive(obj) { + return !isJsObject(obj); +} +function escapeRegExp(s) { + return s.replace(/([.*+?^=!:${}()|[\]\/\\])/g, '\\$1'); +} +//# sourceMappingURL=lang.js.map +/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(57))) + +/***/ }), +/* 7 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return nativeRaf; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return raf; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return cancelRaf; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return nativeTimeout; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return clearNativeTimeout; }); +/* harmony export (immutable) */ __webpack_exports__["n"] = rafFrames; +/* harmony export (immutable) */ __webpack_exports__["r"] = zoneRafFrames; +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return CSS; }); +/* harmony export (immutable) */ __webpack_exports__["i"] = transitionEnd; +/* harmony export (immutable) */ __webpack_exports__["e"] = ready; +/* harmony export (immutable) */ __webpack_exports__["v"] = windowLoad; +/* harmony export (immutable) */ __webpack_exports__["c"] = pointerCoord; +/* harmony export (immutable) */ __webpack_exports__["p"] = hasPointerMoved; +/* unused harmony export isActive */ +/* harmony export (immutable) */ __webpack_exports__["u"] = hasFocus; +/* unused harmony export isTextInput */ +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return NON_TEXT_INPUT_REGEX; }); +/* harmony export (immutable) */ __webpack_exports__["l"] = hasFocusedTextInput; +/* harmony export (immutable) */ __webpack_exports__["m"] = focusOutActiveElement; +/* harmony export (immutable) */ __webpack_exports__["o"] = copyInputAttributes; +/* harmony export (immutable) */ __webpack_exports__["a"] = getDimensions; +/* harmony export (immutable) */ __webpack_exports__["b"] = clearDimensions; +/* harmony export (immutable) */ __webpack_exports__["d"] = windowDimensions; +/* harmony export (immutable) */ __webpack_exports__["f"] = flushDimensionCache; +var win = window; +// RequestAnimationFrame Polyfill (Android 4.3 and below) +/*! @author Paul Irish */ +/*! @source https://gist.github.com/paulirish/1579671 */ +(function () { + var rafLastTime = 0; + if (!win.requestAnimationFrame) { + win.requestAnimationFrame = function (callback) { + var currTime = Date.now(); + var timeToCall = Math.max(0, 16 - (currTime - rafLastTime)); + var id = win.setTimeout(function () { + callback(currTime + timeToCall); + }, timeToCall); + rafLastTime = currTime + timeToCall; + return id; + }; + } + if (!win.cancelAnimationFrame) { + win.cancelAnimationFrame = function (id) { clearTimeout(id); }; + } +})(); +// use native raf rather than the zone wrapped one +var originalRaf = (win[win['Zone']['__symbol__']('requestAnimationFrame')] || win[win['Zone']['__symbol__']('webkitRequestAnimationFrame')]); +// if the originalRaf from the Zone symbol is not available, we need to provide the polyfilled version +var nativeRaf = originalRaf !== undefined ? originalRaf['bind'](win) : win.requestAnimationFrame.bind(win); +// zone wrapped raf +var raf = win.requestAnimationFrame.bind(win); +var cancelRaf = win.cancelAnimationFrame.bind(win); +var nativeTimeout = win[win['Zone']['__symbol__']('setTimeout')]['bind'](win); +var clearNativeTimeout = win[win['Zone']['__symbol__']('clearTimeout')]['bind'](win); +/** + * Run a function in an animation frame after waiting `framesToWait` frames. + * + * @param framesToWait number how many frames to wait + * @param callback Function the function call to defer + * @return Function a function to call to cancel the wait + */ +function rafFrames(framesToWait, callback) { + framesToWait = Math.ceil(framesToWait); + var rafId; + var timeoutId; + if (framesToWait === 0) { + callback(); + } + else if (framesToWait < 2) { + rafId = nativeRaf(callback); + } + else { + timeoutId = nativeTimeout(function () { + rafId = nativeRaf(callback); + }, (framesToWait - 1) * 16.6667); + } + return function () { + clearNativeTimeout(timeoutId); + cancelRaf(raf); + }; +} +// TODO: DRY rafFrames and zoneRafFrames +function zoneRafFrames(framesToWait, callback) { + framesToWait = Math.ceil(framesToWait); + if (framesToWait === 0) { + callback(); + } + else if (framesToWait < 2) { + raf(callback); + } + else { + setTimeout(function () { + raf(callback); + }, (framesToWait - 1) * 16.6667); + } +} +var CSS = {}; +(function () { + // transform + var i; + var keys = ['webkitTransform', 'transform', '-webkit-transform', 'webkit-transform', + '-moz-transform', 'moz-transform', 'MozTransform', 'mozTransform', 'msTransform']; + for (i = 0; i < keys.length; i++) { + if (document.documentElement.style[keys[i]] !== undefined) { + CSS.transform = keys[i]; + break; + } + } + // transition + keys = ['webkitTransition', 'mozTransition', 'msTransition', 'transition']; + for (i = 0; i < keys.length; i++) { + if (document.documentElement.style[keys[i]] !== undefined) { + CSS.transition = keys[i]; + break; + } + } + // The only prefix we care about is webkit for transitions. + var isWebkit = CSS.transition.indexOf('webkit') > -1; + // transition duration + CSS.transitionDuration = (isWebkit ? '-webkit-' : '') + 'transition-duration'; + // transition timing function + CSS.transitionTimingFn = (isWebkit ? '-webkit-' : '') + 'transition-timing-function'; + // transition delay + CSS.transitionDelay = (isWebkit ? '-webkit-' : '') + 'transition-delay'; + // To be sure transitionend works everywhere, include *both* the webkit and non-webkit events + CSS.transitionEnd = (isWebkit ? 'webkitTransitionEnd ' : '') + 'transitionend'; + // transform origin + CSS.transformOrigin = (isWebkit ? '-webkit-' : '') + 'transform-origin'; + // animation delay + CSS.animationDelay = (isWebkit ? 'webkitAnimationDelay' : 'animationDelay'); +})(); +function transitionEnd(el, callback) { + if (el) { + CSS.transitionEnd.split(' ').forEach(function (eventName) { + el.addEventListener(eventName, onEvent); + }); + return unregister; + } + function unregister() { + CSS.transitionEnd.split(' ').forEach(function (eventName) { + el.removeEventListener(eventName, onEvent); + }); + } + function onEvent(ev) { + if (el === ev.target) { + unregister(); + callback(ev); + } + } +} +function ready(callback) { + var promise = null; + if (!callback) { + // a callback wasn't provided, so let's return a promise instead + promise = new Promise(function (resolve) { callback = resolve; }); + } + if (document.readyState === 'complete' || document.readyState === 'interactive') { + callback(); + } + else { + document.addEventListener('DOMContentLoaded', completed, false); + win.addEventListener('load', completed, false); + } + return promise; + function completed() { + document.removeEventListener('DOMContentLoaded', completed, false); + win.removeEventListener('load', completed, false); + callback(); + } +} +function windowLoad(callback) { + var promise = null; + if (!callback) { + // a callback wasn't provided, so let's return a promise instead + promise = new Promise(function (resolve) { callback = resolve; }); + } + if (document.readyState === 'complete') { + callback(); + } + else { + win.addEventListener('load', completed, false); + } + return promise; + function completed() { + win.removeEventListener('load', completed, false); + callback(); + } +} +function pointerCoord(ev) { + // get coordinates for either a mouse click + // or a touch depending on the given event + if (ev) { + var changedTouches = ev.changedTouches; + if (changedTouches && changedTouches.length > 0) { + var touch = changedTouches[0]; + return { x: touch.clientX, y: touch.clientY }; + } + var pageX = ev.pageX; + if (pageX !== undefined) { + return { x: pageX, y: ev.pageY }; + } + } + return { x: 0, y: 0 }; +} +function hasPointerMoved(threshold, startCoord, endCoord) { + if (startCoord && endCoord) { + var deltaX = (startCoord.x - endCoord.x); + var deltaY = (startCoord.y - endCoord.y); + var distance = deltaX * deltaX + deltaY * deltaY; + return distance > (threshold * threshold); + } + return false; +} +function isActive(ele) { + return !!(ele && (document.activeElement === ele)); +} +function hasFocus(ele) { + return isActive(ele) && (ele.parentElement.querySelector(':focus') === ele); +} +function isTextInput(ele) { + return !!ele && + (ele.tagName === 'TEXTAREA' || + ele.contentEditable === 'true' || + (ele.tagName === 'INPUT' && !(NON_TEXT_INPUT_REGEX.test(ele.type)))); +} +var NON_TEXT_INPUT_REGEX = /^(radio|checkbox|range|file|submit|reset|color|image|button)$/i; +function hasFocusedTextInput() { + var ele = document.activeElement; + if (isTextInput(ele)) { + return (ele.parentElement.querySelector(':focus') === ele); + } + return false; +} +function focusOutActiveElement() { + var activeElement = document.activeElement; + activeElement && activeElement.blur && activeElement.blur(); +} +var skipInputAttrsReg = /^(value|checked|disabled|type|class|style|id|autofocus|autocomplete|autocorrect)$/i; +function copyInputAttributes(srcElement, destElement) { + // copy attributes from one element to another + // however, skip over a few of them as they're already + // handled in the angular world + var attrs = srcElement.attributes; + for (var i = 0; i < attrs.length; i++) { + var attr = attrs[i]; + if (!skipInputAttrsReg.test(attr.name)) { + destElement.setAttribute(attr.name, attr.value); + } + } +} +/** + * Get the element offsetWidth and offsetHeight. Values are cached + * to reduce DOM reads. Cache is cleared on a window resize. + */ +function getDimensions(ele, id) { + var dimensions = dimensionCache[id]; + if (!dimensions) { + // make sure we got good values before caching + if (ele.offsetWidth && ele.offsetHeight) { + dimensions = dimensionCache[id] = { + width: ele.offsetWidth, + height: ele.offsetHeight, + left: ele.offsetLeft, + top: ele.offsetTop + }; + } + else { + // do not cache bad values + return { width: 0, height: 0, left: 0, top: 0 }; + } + } + return dimensions; +} +function clearDimensions(id) { + delete dimensionCache[id]; +} +function windowDimensions() { + if (!dimensionCache.win) { + // make sure we got good values before caching + if (win.innerWidth && win.innerHeight) { + dimensionCache.win = { + width: win.innerWidth, + height: win.innerHeight + }; + } + else { + // do not cache bad values + return { width: 0, height: 0 }; + } + } + return dimensionCache.win; +} +function flushDimensionCache() { + dimensionCache = {}; +} +var dimensionCache = {}; +//# sourceMappingURL=dom.js.map + +/***/ }), +/* 8 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var __extends = (this && this.__extends) || function (d, b) { + for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); +}; +var Subscriber_1 = __webpack_require__(4); +/** + * We need this JSDoc comment for affecting ESDoc. + * @ignore + * @extends {Ignored} + */ +var OuterSubscriber = (function (_super) { + __extends(OuterSubscriber, _super); + function OuterSubscriber() { + _super.apply(this, arguments); + } + OuterSubscriber.prototype.notifyNext = function (outerValue, innerValue, outerIndex, innerIndex, innerSub) { + this.destination.next(innerValue); + }; + OuterSubscriber.prototype.notifyError = function (error, innerSub) { + this.destination.error(error); + }; + OuterSubscriber.prototype.notifyComplete = function (innerSub) { + this.destination.complete(); + }; + return OuterSubscriber; +}(Subscriber_1.Subscriber)); +exports.OuterSubscriber = OuterSubscriber; +//# sourceMappingURL=OuterSubscriber.js.map + +/***/ }), +/* 9 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var root_1 = __webpack_require__(25); +var isArray_1 = __webpack_require__(47); +var isPromise_1 = __webpack_require__(515); +var Observable_1 = __webpack_require__(1); +var iterator_1 = __webpack_require__(100); +var InnerSubscriber_1 = __webpack_require__(648); +var observable_1 = __webpack_require__(142); +function subscribeToResult(outerSubscriber, result, outerValue, outerIndex) { + var destination = new InnerSubscriber_1.InnerSubscriber(outerSubscriber, outerValue, outerIndex); + if (destination.closed) { + return null; + } + if (result instanceof Observable_1.Observable) { + if (result._isScalar) { + destination.next(result.value); + destination.complete(); + return null; + } + else { + return result.subscribe(destination); + } + } + if (isArray_1.isArray(result)) { + for (var i = 0, len = result.length; i < len && !destination.closed; i++) { + destination.next(result[i]); + } + if (!destination.closed) { + destination.complete(); + } + } + else if (isPromise_1.isPromise(result)) { + result.then(function (value) { + if (!destination.closed) { + destination.next(value); + destination.complete(); + } + }, function (err) { return destination.error(err); }) + .then(null, function (err) { + // Escaping the Promise trap: globally throw unhandled errors + root_1.root.setTimeout(function () { throw err; }); + }); + return destination; + } + else if (typeof result[iterator_1.$$iterator] === 'function') { + var iterator = result[iterator_1.$$iterator](); + do { + var item = iterator.next(); + if (item.done) { + destination.complete(); + break; + } + destination.next(item.value); + if (destination.closed) { + break; + } + } while (true); + } + else if (typeof result[observable_1.$$observable] === 'function') { + var obs = result[observable_1.$$observable](); + if (typeof obs.subscribe !== 'function') { + destination.error(new Error('invalid observable')); + } + else { + return obs.subscribe(new InnerSubscriber_1.InnerSubscriber(outerSubscriber, outerValue, outerIndex)); + } + } + else { + destination.error(new TypeError('unknown type returned')); + } + return null; +} +exports.subscribeToResult = subscribeToResult; +//# sourceMappingURL=subscribeToResult.js.map + +/***/ }), +/* 10 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* WEBPACK VAR INJECTION */(function(global) {/* harmony export (immutable) */ __webpack_exports__["a"] = scheduleMicroTask; +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return _global; }); +/* harmony export (immutable) */ __webpack_exports__["l"] = getTypeNameForDebugging; +/* harmony export (immutable) */ __webpack_exports__["b"] = isPresent; +/* harmony export (immutable) */ __webpack_exports__["k"] = isBlank; +/* unused harmony export isStrictStringMap */ +/* unused harmony export isDate */ +/* harmony export (immutable) */ __webpack_exports__["c"] = stringify; +/* unused harmony export NumberWrapper */ +/* harmony export (immutable) */ __webpack_exports__["j"] = looseIdentical; +/* harmony export (immutable) */ __webpack_exports__["e"] = isJsObject; +/* harmony export (immutable) */ __webpack_exports__["g"] = print; +/* harmony export (immutable) */ __webpack_exports__["h"] = warn; +/* unused harmony export setValueOnPath */ +/* harmony export (immutable) */ __webpack_exports__["f"] = getSymbolIterator; +/* harmony export (immutable) */ __webpack_exports__["i"] = isPrimitive; +/* unused harmony export escapeRegExp */ +/** + * @license + * Copyright Google Inc. All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */ +var globalScope; +if (typeof window === 'undefined') { + if (typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope) { + // TODO: Replace any with WorkerGlobalScope from lib.webworker.d.ts #3492 + globalScope = self; + } + else { + globalScope = global; + } +} +else { + globalScope = window; +} +function scheduleMicroTask(fn) { + Zone.current.scheduleMicroTask('scheduleMicrotask', fn); +} +// Need to declare a new variable for global here since TypeScript +// exports the original value of the symbol. +var _global = globalScope; + +function getTypeNameForDebugging(type) { + return type['name'] || typeof type; +} +// TODO: remove calls to assert in production environment +// Note: Can't just export this and import in in other files +// as `assert` is a reserved keyword in Dart +_global.assert = function assert(condition) { + // TODO: to be fixed properly via #2830, noop for now +}; +function isPresent(obj) { + return obj != null; +} +function isBlank(obj) { + return obj == null; +} +var STRING_MAP_PROTO = Object.getPrototypeOf({}); +function isStrictStringMap(obj) { + return typeof obj === 'object' && obj !== null && Object.getPrototypeOf(obj) === STRING_MAP_PROTO; +} +function isDate(obj) { + return obj instanceof Date && !isNaN(obj.valueOf()); +} +function stringify(token) { + if (typeof token === 'string') { + return token; + } + if (token == null) { + return '' + token; + } + if (token.overriddenName) { + return token.overriddenName; + } + if (token.name) { + return token.name; + } + var res = token.toString(); + var newLineIndex = res.indexOf('\n'); + return newLineIndex === -1 ? res : res.substring(0, newLineIndex); +} +var NumberWrapper = (function () { + function NumberWrapper() { + } + NumberWrapper.parseIntAutoRadix = function (text) { + var result = parseInt(text); + if (isNaN(result)) { + throw new Error('Invalid integer literal when parsing ' + text); + } + return result; + }; + NumberWrapper.isNumeric = function (value) { return !isNaN(value - parseFloat(value)); }; + return NumberWrapper; +}()); +// JS has NaN !== NaN +function looseIdentical(a, b) { + return a === b || typeof a === 'number' && typeof b === 'number' && isNaN(a) && isNaN(b); +} +function isJsObject(o) { + return o !== null && (typeof o === 'function' || typeof o === 'object'); +} +function print(obj) { + console.log(obj); +} +function warn(obj) { + console.warn(obj); +} +function setValueOnPath(global, path, value) { + var parts = path.split('.'); + var obj = global; + while (parts.length > 1) { + var name_1 = parts.shift(); + if (obj.hasOwnProperty(name_1) && obj[name_1] != null) { + obj = obj[name_1]; + } + else { + obj = obj[name_1] = {}; + } + } + if (obj === undefined || obj === null) { + obj = {}; + } + obj[parts.shift()] = value; +} +var _symbolIterator = null; +function getSymbolIterator() { + if (!_symbolIterator) { + if (globalScope.Symbol && Symbol.iterator) { + _symbolIterator = Symbol.iterator; + } + else { + // es6-shim specific logic + var keys = Object.getOwnPropertyNames(Map.prototype); + for (var i = 0; i < keys.length; ++i) { + var key = keys[i]; + if (key !== 'entries' && key !== 'size' && + Map.prototype[key] === Map.prototype['entries']) { + _symbolIterator = key; + } + } + } + } + return _symbolIterator; +} +function isPrimitive(obj) { + return !isJsObject(obj); +} +function escapeRegExp(s) { + return s.replace(/([.*+?^=!:${}()|[\]\/\\])/g, '\\$1'); +} +//# sourceMappingURL=lang.js.map +/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(57))) + +/***/ }), +/* 11 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__util_dom__ = __webpack_require__(7); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return Ion; }); + +/** + * Base class for all Ionic components. Exposes some common functionality + * that all Ionic components need, such as accessing underlying native elements and + * sending/receiving app-level events. + */ +var Ion = (function () { + function Ion(config, elementRef, renderer, componentName) { + this._config = config; + this._elementRef = elementRef; + this._renderer = renderer; + this._componentName = componentName; + if (componentName) { + this._setComponentName(); + this._setMode(config.get('mode')); + } + } + /** @private */ + Ion.prototype.setElementClass = function (className, isAdd) { + this._renderer.setElementClass(this._elementRef.nativeElement, className, isAdd); + }; + /** @private */ + Ion.prototype.setElementAttribute = function (attributeName, attributeValue) { + this._renderer.setElementAttribute(this._elementRef.nativeElement, attributeName, attributeValue); + }; + /** @private */ + Ion.prototype.setElementStyle = function (property, value) { + this._renderer.setElementStyle(this._elementRef.nativeElement, property, value); + }; + /** @private */ + Ion.prototype._setColor = function (newColor, componentName) { + if (componentName) { + // This is needed for the item-radio + this._componentName = componentName; + } + if (this._color) { + this.setElementClass(this._componentName + "-" + this._mode + "-" + this._color, false); + } + if (newColor) { + this.setElementClass(this._componentName + "-" + this._mode + "-" + newColor, true); + this._color = newColor; + } + }; + /** @private */ + Ion.prototype._setMode = function (newMode) { + if (this._mode) { + this.setElementClass(this._componentName + "-" + this._mode, false); + } + if (newMode) { + this.setElementClass(this._componentName + "-" + newMode, true); + // Remove the color class associated with the previous mode, + // change the mode, then add the new color class + this._setColor(null); + this._mode = newMode; + this._setColor(this._color); + } + }; + /** @private */ + Ion.prototype._setComponentName = function () { + this.setElementClass(this._componentName, true); + }; + /** @private */ + Ion.prototype.getElementRef = function () { + return this._elementRef; + }; + /** @private */ + Ion.prototype.getNativeElement = function () { + return this._elementRef.nativeElement; + }; + /** @private */ + Ion.prototype.getDimensions = function () { + return __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__util_dom__["a" /* getDimensions */])(this.getNativeElement(), this._getId()); + }; + /** @private */ + Ion.prototype.width = function () { + return __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__util_dom__["a" /* getDimensions */])(this.getNativeElement(), this._getId()).width; + }; + /** @private */ + Ion.prototype.height = function () { + return __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__util_dom__["a" /* getDimensions */])(this.getNativeElement(), this._getId()).height; + }; + /** @private */ + Ion.prototype.destroy = function () { + __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__util_dom__["b" /* clearDimensions */])(this._ionId); + }; + /** internal */ + Ion.prototype._getId = function () { + if (!this._ionId) { + this._ionId = 'i' + ids++; + } + return this._ionId; + }; + return Ion; +}()); +var ids = 0; +//# sourceMappingURL=ion.js.map + +/***/ }), +/* 12 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__facade_lang__ = __webpack_require__(6); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return TypeModifier; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return Type; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return BuiltinTypeName; }); +/* unused harmony export BuiltinType */ +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return ExternalType; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return ArrayType; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return MapType; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return DYNAMIC_TYPE; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return BOOL_TYPE; }); +/* unused harmony export INT_TYPE */ +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return NUMBER_TYPE; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return STRING_TYPE; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return FUNCTION_TYPE; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return NULL_TYPE; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return BinaryOperator; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return Expression; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return BuiltinVar; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return ReadVarExpr; }); +/* unused harmony export WriteVarExpr */ +/* unused harmony export WriteKeyExpr */ +/* unused harmony export WritePropExpr */ +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return BuiltinMethod; }); +/* unused harmony export InvokeMethodExpr */ +/* unused harmony export InvokeFunctionExpr */ +/* unused harmony export InstantiateExpr */ +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return LiteralExpr; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return ExternalExpr; }); +/* unused harmony export ConditionalExpr */ +/* unused harmony export NotExpr */ +/* unused harmony export CastExpr */ +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return FnParam; }); +/* unused harmony export FunctionExpr */ +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return BinaryOperatorExpr; }); +/* unused harmony export ReadPropExpr */ +/* unused harmony export ReadKeyExpr */ +/* unused harmony export LiteralArrayExpr */ +/* unused harmony export LiteralMapExpr */ +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return THIS_EXPR; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return SUPER_EXPR; }); +/* unused harmony export CATCH_ERROR_VAR */ +/* unused harmony export CATCH_STACK_VAR */ +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return NULL_EXPR; }); +/* unused harmony export TYPED_NULL_EXPR */ +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return StmtModifier; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return Statement; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return DeclareVarStmt; }); +/* unused harmony export DeclareFunctionStmt */ +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return ExpressionStatement; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return ReturnStatement; }); +/* unused harmony export AbstractClassPart */ +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return ClassField; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return ClassMethod; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return ClassGetter; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return ClassStmt; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return IfStmt; }); +/* unused harmony export CommentStmt */ +/* unused harmony export TryCatchStmt */ +/* unused harmony export ThrowStmt */ +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return ExpressionTransformer; }); +/* unused harmony export RecursiveExpressionVisitor */ +/* harmony export (immutable) */ __webpack_exports__["J"] = replaceVarInExpression; +/* harmony export (immutable) */ __webpack_exports__["x"] = findReadVarNames; +/* harmony export (immutable) */ __webpack_exports__["a"] = variable; +/* harmony export (immutable) */ __webpack_exports__["g"] = importExpr; +/* harmony export (immutable) */ __webpack_exports__["d"] = importType; +/* harmony export (immutable) */ __webpack_exports__["h"] = literalArr; +/* harmony export (immutable) */ __webpack_exports__["m"] = literalMap; +/* harmony export (immutable) */ __webpack_exports__["w"] = not; +/* harmony export (immutable) */ __webpack_exports__["C"] = fn; +/* harmony export (immutable) */ __webpack_exports__["f"] = literal; +/** + * @license + * Copyright Google Inc. All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */ +var __extends = (this && this.__extends) || function (d, b) { + for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); +}; + +//// Types +var TypeModifier; +(function (TypeModifier) { + TypeModifier[TypeModifier["Const"] = 0] = "Const"; +})(TypeModifier || (TypeModifier = {})); +var Type = (function () { + function Type(modifiers) { + if (modifiers === void 0) { modifiers = null; } + this.modifiers = modifiers; + if (!modifiers) { + this.modifiers = []; + } + } + Type.prototype.hasModifier = function (modifier) { return this.modifiers.indexOf(modifier) !== -1; }; + return Type; +}()); +var BuiltinTypeName; +(function (BuiltinTypeName) { + BuiltinTypeName[BuiltinTypeName["Dynamic"] = 0] = "Dynamic"; + BuiltinTypeName[BuiltinTypeName["Bool"] = 1] = "Bool"; + BuiltinTypeName[BuiltinTypeName["String"] = 2] = "String"; + BuiltinTypeName[BuiltinTypeName["Int"] = 3] = "Int"; + BuiltinTypeName[BuiltinTypeName["Number"] = 4] = "Number"; + BuiltinTypeName[BuiltinTypeName["Function"] = 5] = "Function"; + BuiltinTypeName[BuiltinTypeName["Null"] = 6] = "Null"; +})(BuiltinTypeName || (BuiltinTypeName = {})); +var BuiltinType = (function (_super) { + __extends(BuiltinType, _super); + function BuiltinType(name, modifiers) { + if (modifiers === void 0) { modifiers = null; } + _super.call(this, modifiers); + this.name = name; + } + BuiltinType.prototype.visitType = function (visitor, context) { + return visitor.visitBuiltintType(this, context); + }; + return BuiltinType; +}(Type)); +var ExternalType = (function (_super) { + __extends(ExternalType, _super); + function ExternalType(value, typeParams, modifiers) { + if (typeParams === void 0) { typeParams = null; } + if (modifiers === void 0) { modifiers = null; } + _super.call(this, modifiers); + this.value = value; + this.typeParams = typeParams; + } + ExternalType.prototype.visitType = function (visitor, context) { + return visitor.visitExternalType(this, context); + }; + return ExternalType; +}(Type)); +var ArrayType = (function (_super) { + __extends(ArrayType, _super); + function ArrayType(of, modifiers) { + if (modifiers === void 0) { modifiers = null; } + _super.call(this, modifiers); + this.of = of; + } + ArrayType.prototype.visitType = function (visitor, context) { + return visitor.visitArrayType(this, context); + }; + return ArrayType; +}(Type)); +var MapType = (function (_super) { + __extends(MapType, _super); + function MapType(valueType, modifiers) { + if (modifiers === void 0) { modifiers = null; } + _super.call(this, modifiers); + this.valueType = valueType; + } + MapType.prototype.visitType = function (visitor, context) { return visitor.visitMapType(this, context); }; + return MapType; +}(Type)); +var DYNAMIC_TYPE = new BuiltinType(BuiltinTypeName.Dynamic); +var BOOL_TYPE = new BuiltinType(BuiltinTypeName.Bool); +var INT_TYPE = new BuiltinType(BuiltinTypeName.Int); +var NUMBER_TYPE = new BuiltinType(BuiltinTypeName.Number); +var STRING_TYPE = new BuiltinType(BuiltinTypeName.String); +var FUNCTION_TYPE = new BuiltinType(BuiltinTypeName.Function); +var NULL_TYPE = new BuiltinType(BuiltinTypeName.Null); +///// Expressions +var BinaryOperator; +(function (BinaryOperator) { + BinaryOperator[BinaryOperator["Equals"] = 0] = "Equals"; + BinaryOperator[BinaryOperator["NotEquals"] = 1] = "NotEquals"; + BinaryOperator[BinaryOperator["Identical"] = 2] = "Identical"; + BinaryOperator[BinaryOperator["NotIdentical"] = 3] = "NotIdentical"; + BinaryOperator[BinaryOperator["Minus"] = 4] = "Minus"; + BinaryOperator[BinaryOperator["Plus"] = 5] = "Plus"; + BinaryOperator[BinaryOperator["Divide"] = 6] = "Divide"; + BinaryOperator[BinaryOperator["Multiply"] = 7] = "Multiply"; + BinaryOperator[BinaryOperator["Modulo"] = 8] = "Modulo"; + BinaryOperator[BinaryOperator["And"] = 9] = "And"; + BinaryOperator[BinaryOperator["Or"] = 10] = "Or"; + BinaryOperator[BinaryOperator["Lower"] = 11] = "Lower"; + BinaryOperator[BinaryOperator["LowerEquals"] = 12] = "LowerEquals"; + BinaryOperator[BinaryOperator["Bigger"] = 13] = "Bigger"; + BinaryOperator[BinaryOperator["BiggerEquals"] = 14] = "BiggerEquals"; +})(BinaryOperator || (BinaryOperator = {})); +var Expression = (function () { + function Expression(type) { + this.type = type; + } + Expression.prototype.prop = function (name) { return new ReadPropExpr(this, name); }; + Expression.prototype.key = function (index, type) { + if (type === void 0) { type = null; } + return new ReadKeyExpr(this, index, type); + }; + Expression.prototype.callMethod = function (name, params) { + return new InvokeMethodExpr(this, name, params); + }; + Expression.prototype.callFn = function (params) { return new InvokeFunctionExpr(this, params); }; + Expression.prototype.instantiate = function (params, type) { + if (type === void 0) { type = null; } + return new InstantiateExpr(this, params, type); + }; + Expression.prototype.conditional = function (trueCase, falseCase) { + if (falseCase === void 0) { falseCase = null; } + return new ConditionalExpr(this, trueCase, falseCase); + }; + Expression.prototype.equals = function (rhs) { + return new BinaryOperatorExpr(BinaryOperator.Equals, this, rhs); + }; + Expression.prototype.notEquals = function (rhs) { + return new BinaryOperatorExpr(BinaryOperator.NotEquals, this, rhs); + }; + Expression.prototype.identical = function (rhs) { + return new BinaryOperatorExpr(BinaryOperator.Identical, this, rhs); + }; + Expression.prototype.notIdentical = function (rhs) { + return new BinaryOperatorExpr(BinaryOperator.NotIdentical, this, rhs); + }; + Expression.prototype.minus = function (rhs) { + return new BinaryOperatorExpr(BinaryOperator.Minus, this, rhs); + }; + Expression.prototype.plus = function (rhs) { + return new BinaryOperatorExpr(BinaryOperator.Plus, this, rhs); + }; + Expression.prototype.divide = function (rhs) { + return new BinaryOperatorExpr(BinaryOperator.Divide, this, rhs); + }; + Expression.prototype.multiply = function (rhs) { + return new BinaryOperatorExpr(BinaryOperator.Multiply, this, rhs); + }; + Expression.prototype.modulo = function (rhs) { + return new BinaryOperatorExpr(BinaryOperator.Modulo, this, rhs); + }; + Expression.prototype.and = function (rhs) { + return new BinaryOperatorExpr(BinaryOperator.And, this, rhs); + }; + Expression.prototype.or = function (rhs) { + return new BinaryOperatorExpr(BinaryOperator.Or, this, rhs); + }; + Expression.prototype.lower = function (rhs) { + return new BinaryOperatorExpr(BinaryOperator.Lower, this, rhs); + }; + Expression.prototype.lowerEquals = function (rhs) { + return new BinaryOperatorExpr(BinaryOperator.LowerEquals, this, rhs); + }; + Expression.prototype.bigger = function (rhs) { + return new BinaryOperatorExpr(BinaryOperator.Bigger, this, rhs); + }; + Expression.prototype.biggerEquals = function (rhs) { + return new BinaryOperatorExpr(BinaryOperator.BiggerEquals, this, rhs); + }; + Expression.prototype.isBlank = function () { + // Note: We use equals by purpose here to compare to null and undefined in JS. + // We use the typed null to allow strictNullChecks to narrow types. + return this.equals(TYPED_NULL_EXPR); + }; + Expression.prototype.cast = function (type) { return new CastExpr(this, type); }; + Expression.prototype.toStmt = function () { return new ExpressionStatement(this); }; + return Expression; +}()); +var BuiltinVar; +(function (BuiltinVar) { + BuiltinVar[BuiltinVar["This"] = 0] = "This"; + BuiltinVar[BuiltinVar["Super"] = 1] = "Super"; + BuiltinVar[BuiltinVar["CatchError"] = 2] = "CatchError"; + BuiltinVar[BuiltinVar["CatchStack"] = 3] = "CatchStack"; +})(BuiltinVar || (BuiltinVar = {})); +var ReadVarExpr = (function (_super) { + __extends(ReadVarExpr, _super); + function ReadVarExpr(name, type) { + if (type === void 0) { type = null; } + _super.call(this, type); + if (typeof name === 'string') { + this.name = name; + this.builtin = null; + } + else { + this.name = null; + this.builtin = name; + } + } + ReadVarExpr.prototype.visitExpression = function (visitor, context) { + return visitor.visitReadVarExpr(this, context); + }; + ReadVarExpr.prototype.set = function (value) { return new WriteVarExpr(this.name, value); }; + return ReadVarExpr; +}(Expression)); +var WriteVarExpr = (function (_super) { + __extends(WriteVarExpr, _super); + function WriteVarExpr(name, value, type) { + if (type === void 0) { type = null; } + _super.call(this, type || value.type); + this.name = name; + this.value = value; + } + WriteVarExpr.prototype.visitExpression = function (visitor, context) { + return visitor.visitWriteVarExpr(this, context); + }; + WriteVarExpr.prototype.toDeclStmt = function (type, modifiers) { + if (type === void 0) { type = null; } + if (modifiers === void 0) { modifiers = null; } + return new DeclareVarStmt(this.name, this.value, type, modifiers); + }; + return WriteVarExpr; +}(Expression)); +var WriteKeyExpr = (function (_super) { + __extends(WriteKeyExpr, _super); + function WriteKeyExpr(receiver, index, value, type) { + if (type === void 0) { type = null; } + _super.call(this, type || value.type); + this.receiver = receiver; + this.index = index; + this.value = value; + } + WriteKeyExpr.prototype.visitExpression = function (visitor, context) { + return visitor.visitWriteKeyExpr(this, context); + }; + return WriteKeyExpr; +}(Expression)); +var WritePropExpr = (function (_super) { + __extends(WritePropExpr, _super); + function WritePropExpr(receiver, name, value, type) { + if (type === void 0) { type = null; } + _super.call(this, type || value.type); + this.receiver = receiver; + this.name = name; + this.value = value; + } + WritePropExpr.prototype.visitExpression = function (visitor, context) { + return visitor.visitWritePropExpr(this, context); + }; + return WritePropExpr; +}(Expression)); +var BuiltinMethod; +(function (BuiltinMethod) { + BuiltinMethod[BuiltinMethod["ConcatArray"] = 0] = "ConcatArray"; + BuiltinMethod[BuiltinMethod["SubscribeObservable"] = 1] = "SubscribeObservable"; + BuiltinMethod[BuiltinMethod["Bind"] = 2] = "Bind"; +})(BuiltinMethod || (BuiltinMethod = {})); +var InvokeMethodExpr = (function (_super) { + __extends(InvokeMethodExpr, _super); + function InvokeMethodExpr(receiver, method, args, type) { + if (type === void 0) { type = null; } + _super.call(this, type); + this.receiver = receiver; + this.args = args; + if (typeof method === 'string') { + this.name = method; + this.builtin = null; + } + else { + this.name = null; + this.builtin = method; + } + } + InvokeMethodExpr.prototype.visitExpression = function (visitor, context) { + return visitor.visitInvokeMethodExpr(this, context); + }; + return InvokeMethodExpr; +}(Expression)); +var InvokeFunctionExpr = (function (_super) { + __extends(InvokeFunctionExpr, _super); + function InvokeFunctionExpr(fn, args, type) { + if (type === void 0) { type = null; } + _super.call(this, type); + this.fn = fn; + this.args = args; + } + InvokeFunctionExpr.prototype.visitExpression = function (visitor, context) { + return visitor.visitInvokeFunctionExpr(this, context); + }; + return InvokeFunctionExpr; +}(Expression)); +var InstantiateExpr = (function (_super) { + __extends(InstantiateExpr, _super); + function InstantiateExpr(classExpr, args, type) { + _super.call(this, type); + this.classExpr = classExpr; + this.args = args; + } + InstantiateExpr.prototype.visitExpression = function (visitor, context) { + return visitor.visitInstantiateExpr(this, context); + }; + return InstantiateExpr; +}(Expression)); +var LiteralExpr = (function (_super) { + __extends(LiteralExpr, _super); + function LiteralExpr(value, type) { + if (type === void 0) { type = null; } + _super.call(this, type); + this.value = value; + } + LiteralExpr.prototype.visitExpression = function (visitor, context) { + return visitor.visitLiteralExpr(this, context); + }; + return LiteralExpr; +}(Expression)); +var ExternalExpr = (function (_super) { + __extends(ExternalExpr, _super); + function ExternalExpr(value, type, typeParams) { + if (type === void 0) { type = null; } + if (typeParams === void 0) { typeParams = null; } + _super.call(this, type); + this.value = value; + this.typeParams = typeParams; + } + ExternalExpr.prototype.visitExpression = function (visitor, context) { + return visitor.visitExternalExpr(this, context); + }; + return ExternalExpr; +}(Expression)); +var ConditionalExpr = (function (_super) { + __extends(ConditionalExpr, _super); + function ConditionalExpr(condition, trueCase, falseCase, type) { + if (falseCase === void 0) { falseCase = null; } + if (type === void 0) { type = null; } + _super.call(this, type || trueCase.type); + this.condition = condition; + this.falseCase = falseCase; + this.trueCase = trueCase; + } + ConditionalExpr.prototype.visitExpression = function (visitor, context) { + return visitor.visitConditionalExpr(this, context); + }; + return ConditionalExpr; +}(Expression)); +var NotExpr = (function (_super) { + __extends(NotExpr, _super); + function NotExpr(condition) { + _super.call(this, BOOL_TYPE); + this.condition = condition; + } + NotExpr.prototype.visitExpression = function (visitor, context) { + return visitor.visitNotExpr(this, context); + }; + return NotExpr; +}(Expression)); +var CastExpr = (function (_super) { + __extends(CastExpr, _super); + function CastExpr(value, type) { + _super.call(this, type); + this.value = value; + } + CastExpr.prototype.visitExpression = function (visitor, context) { + return visitor.visitCastExpr(this, context); + }; + return CastExpr; +}(Expression)); +var FnParam = (function () { + function FnParam(name, type) { + if (type === void 0) { type = null; } + this.name = name; + this.type = type; + } + return FnParam; +}()); +var FunctionExpr = (function (_super) { + __extends(FunctionExpr, _super); + function FunctionExpr(params, statements, type) { + if (type === void 0) { type = null; } + _super.call(this, type); + this.params = params; + this.statements = statements; + } + FunctionExpr.prototype.visitExpression = function (visitor, context) { + return visitor.visitFunctionExpr(this, context); + }; + FunctionExpr.prototype.toDeclStmt = function (name, modifiers) { + if (modifiers === void 0) { modifiers = null; } + return new DeclareFunctionStmt(name, this.params, this.statements, this.type, modifiers); + }; + return FunctionExpr; +}(Expression)); +var BinaryOperatorExpr = (function (_super) { + __extends(BinaryOperatorExpr, _super); + function BinaryOperatorExpr(operator, lhs, rhs, type) { + if (type === void 0) { type = null; } + _super.call(this, type || lhs.type); + this.operator = operator; + this.rhs = rhs; + this.lhs = lhs; + } + BinaryOperatorExpr.prototype.visitExpression = function (visitor, context) { + return visitor.visitBinaryOperatorExpr(this, context); + }; + return BinaryOperatorExpr; +}(Expression)); +var ReadPropExpr = (function (_super) { + __extends(ReadPropExpr, _super); + function ReadPropExpr(receiver, name, type) { + if (type === void 0) { type = null; } + _super.call(this, type); + this.receiver = receiver; + this.name = name; + } + ReadPropExpr.prototype.visitExpression = function (visitor, context) { + return visitor.visitReadPropExpr(this, context); + }; + ReadPropExpr.prototype.set = function (value) { + return new WritePropExpr(this.receiver, this.name, value); + }; + return ReadPropExpr; +}(Expression)); +var ReadKeyExpr = (function (_super) { + __extends(ReadKeyExpr, _super); + function ReadKeyExpr(receiver, index, type) { + if (type === void 0) { type = null; } + _super.call(this, type); + this.receiver = receiver; + this.index = index; + } + ReadKeyExpr.prototype.visitExpression = function (visitor, context) { + return visitor.visitReadKeyExpr(this, context); + }; + ReadKeyExpr.prototype.set = function (value) { + return new WriteKeyExpr(this.receiver, this.index, value); + }; + return ReadKeyExpr; +}(Expression)); +var LiteralArrayExpr = (function (_super) { + __extends(LiteralArrayExpr, _super); + function LiteralArrayExpr(entries, type) { + if (type === void 0) { type = null; } + _super.call(this, type); + this.entries = entries; + } + LiteralArrayExpr.prototype.visitExpression = function (visitor, context) { + return visitor.visitLiteralArrayExpr(this, context); + }; + return LiteralArrayExpr; +}(Expression)); +var LiteralMapExpr = (function (_super) { + __extends(LiteralMapExpr, _super); + function LiteralMapExpr(entries, type) { + if (type === void 0) { type = null; } + _super.call(this, type); + this.entries = entries; + this.valueType = null; + if (__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__facade_lang__["a" /* isPresent */])(type)) { + this.valueType = type.valueType; + } + } + LiteralMapExpr.prototype.visitExpression = function (visitor, context) { + return visitor.visitLiteralMapExpr(this, context); + }; + return LiteralMapExpr; +}(Expression)); +var THIS_EXPR = new ReadVarExpr(BuiltinVar.This); +var SUPER_EXPR = new ReadVarExpr(BuiltinVar.Super); +var CATCH_ERROR_VAR = new ReadVarExpr(BuiltinVar.CatchError); +var CATCH_STACK_VAR = new ReadVarExpr(BuiltinVar.CatchStack); +var NULL_EXPR = new LiteralExpr(null, null); +var TYPED_NULL_EXPR = new LiteralExpr(null, NULL_TYPE); +//// Statements +var StmtModifier; +(function (StmtModifier) { + StmtModifier[StmtModifier["Final"] = 0] = "Final"; + StmtModifier[StmtModifier["Private"] = 1] = "Private"; +})(StmtModifier || (StmtModifier = {})); +var Statement = (function () { + function Statement(modifiers) { + if (modifiers === void 0) { modifiers = null; } + this.modifiers = modifiers; + if (!modifiers) { + this.modifiers = []; + } + } + Statement.prototype.hasModifier = function (modifier) { return this.modifiers.indexOf(modifier) !== -1; }; + return Statement; +}()); +var DeclareVarStmt = (function (_super) { + __extends(DeclareVarStmt, _super); + function DeclareVarStmt(name, value, type, modifiers) { + if (type === void 0) { type = null; } + if (modifiers === void 0) { modifiers = null; } + _super.call(this, modifiers); + this.name = name; + this.value = value; + this.type = type || value.type; + } + DeclareVarStmt.prototype.visitStatement = function (visitor, context) { + return visitor.visitDeclareVarStmt(this, context); + }; + return DeclareVarStmt; +}(Statement)); +var DeclareFunctionStmt = (function (_super) { + __extends(DeclareFunctionStmt, _super); + function DeclareFunctionStmt(name, params, statements, type, modifiers) { + if (type === void 0) { type = null; } + if (modifiers === void 0) { modifiers = null; } + _super.call(this, modifiers); + this.name = name; + this.params = params; + this.statements = statements; + this.type = type; + } + DeclareFunctionStmt.prototype.visitStatement = function (visitor, context) { + return visitor.visitDeclareFunctionStmt(this, context); + }; + return DeclareFunctionStmt; +}(Statement)); +var ExpressionStatement = (function (_super) { + __extends(ExpressionStatement, _super); + function ExpressionStatement(expr) { + _super.call(this); + this.expr = expr; + } + ExpressionStatement.prototype.visitStatement = function (visitor, context) { + return visitor.visitExpressionStmt(this, context); + }; + return ExpressionStatement; +}(Statement)); +var ReturnStatement = (function (_super) { + __extends(ReturnStatement, _super); + function ReturnStatement(value) { + _super.call(this); + this.value = value; + } + ReturnStatement.prototype.visitStatement = function (visitor, context) { + return visitor.visitReturnStmt(this, context); + }; + return ReturnStatement; +}(Statement)); +var AbstractClassPart = (function () { + function AbstractClassPart(type, modifiers) { + if (type === void 0) { type = null; } + this.type = type; + this.modifiers = modifiers; + if (!modifiers) { + this.modifiers = []; + } + } + AbstractClassPart.prototype.hasModifier = function (modifier) { return this.modifiers.indexOf(modifier) !== -1; }; + return AbstractClassPart; +}()); +var ClassField = (function (_super) { + __extends(ClassField, _super); + function ClassField(name, type, modifiers) { + if (type === void 0) { type = null; } + if (modifiers === void 0) { modifiers = null; } + _super.call(this, type, modifiers); + this.name = name; + } + return ClassField; +}(AbstractClassPart)); +var ClassMethod = (function (_super) { + __extends(ClassMethod, _super); + function ClassMethod(name, params, body, type, modifiers) { + if (type === void 0) { type = null; } + if (modifiers === void 0) { modifiers = null; } + _super.call(this, type, modifiers); + this.name = name; + this.params = params; + this.body = body; + } + return ClassMethod; +}(AbstractClassPart)); +var ClassGetter = (function (_super) { + __extends(ClassGetter, _super); + function ClassGetter(name, body, type, modifiers) { + if (type === void 0) { type = null; } + if (modifiers === void 0) { modifiers = null; } + _super.call(this, type, modifiers); + this.name = name; + this.body = body; + } + return ClassGetter; +}(AbstractClassPart)); +var ClassStmt = (function (_super) { + __extends(ClassStmt, _super); + function ClassStmt(name, parent, fields, getters, constructorMethod, methods, modifiers) { + if (modifiers === void 0) { modifiers = null; } + _super.call(this, modifiers); + this.name = name; + this.parent = parent; + this.fields = fields; + this.getters = getters; + this.constructorMethod = constructorMethod; + this.methods = methods; + } + ClassStmt.prototype.visitStatement = function (visitor, context) { + return visitor.visitDeclareClassStmt(this, context); + }; + return ClassStmt; +}(Statement)); +var IfStmt = (function (_super) { + __extends(IfStmt, _super); + function IfStmt(condition, trueCase, falseCase) { + if (falseCase === void 0) { falseCase = []; } + _super.call(this); + this.condition = condition; + this.trueCase = trueCase; + this.falseCase = falseCase; + } + IfStmt.prototype.visitStatement = function (visitor, context) { + return visitor.visitIfStmt(this, context); + }; + return IfStmt; +}(Statement)); +var CommentStmt = (function (_super) { + __extends(CommentStmt, _super); + function CommentStmt(comment) { + _super.call(this); + this.comment = comment; + } + CommentStmt.prototype.visitStatement = function (visitor, context) { + return visitor.visitCommentStmt(this, context); + }; + return CommentStmt; +}(Statement)); +var TryCatchStmt = (function (_super) { + __extends(TryCatchStmt, _super); + function TryCatchStmt(bodyStmts, catchStmts) { + _super.call(this); + this.bodyStmts = bodyStmts; + this.catchStmts = catchStmts; + } + TryCatchStmt.prototype.visitStatement = function (visitor, context) { + return visitor.visitTryCatchStmt(this, context); + }; + return TryCatchStmt; +}(Statement)); +var ThrowStmt = (function (_super) { + __extends(ThrowStmt, _super); + function ThrowStmt(error) { + _super.call(this); + this.error = error; + } + ThrowStmt.prototype.visitStatement = function (visitor, context) { + return visitor.visitThrowStmt(this, context); + }; + return ThrowStmt; +}(Statement)); +var ExpressionTransformer = (function () { + function ExpressionTransformer() { + } + ExpressionTransformer.prototype.visitReadVarExpr = function (ast, context) { return ast; }; + ExpressionTransformer.prototype.visitWriteVarExpr = function (expr, context) { + return new WriteVarExpr(expr.name, expr.value.visitExpression(this, context)); + }; + ExpressionTransformer.prototype.visitWriteKeyExpr = function (expr, context) { + return new WriteKeyExpr(expr.receiver.visitExpression(this, context), expr.index.visitExpression(this, context), expr.value.visitExpression(this, context)); + }; + ExpressionTransformer.prototype.visitWritePropExpr = function (expr, context) { + return new WritePropExpr(expr.receiver.visitExpression(this, context), expr.name, expr.value.visitExpression(this, context)); + }; + ExpressionTransformer.prototype.visitInvokeMethodExpr = function (ast, context) { + var method = ast.builtin || ast.name; + return new InvokeMethodExpr(ast.receiver.visitExpression(this, context), method, this.visitAllExpressions(ast.args, context), ast.type); + }; + ExpressionTransformer.prototype.visitInvokeFunctionExpr = function (ast, context) { + return new InvokeFunctionExpr(ast.fn.visitExpression(this, context), this.visitAllExpressions(ast.args, context), ast.type); + }; + ExpressionTransformer.prototype.visitInstantiateExpr = function (ast, context) { + return new InstantiateExpr(ast.classExpr.visitExpression(this, context), this.visitAllExpressions(ast.args, context), ast.type); + }; + ExpressionTransformer.prototype.visitLiteralExpr = function (ast, context) { return ast; }; + ExpressionTransformer.prototype.visitExternalExpr = function (ast, context) { return ast; }; + ExpressionTransformer.prototype.visitConditionalExpr = function (ast, context) { + return new ConditionalExpr(ast.condition.visitExpression(this, context), ast.trueCase.visitExpression(this, context), ast.falseCase.visitExpression(this, context)); + }; + ExpressionTransformer.prototype.visitNotExpr = function (ast, context) { + return new NotExpr(ast.condition.visitExpression(this, context)); + }; + ExpressionTransformer.prototype.visitCastExpr = function (ast, context) { + return new CastExpr(ast.value.visitExpression(this, context), context); + }; + ExpressionTransformer.prototype.visitFunctionExpr = function (ast, context) { + // Don't descend into nested functions + return ast; + }; + ExpressionTransformer.prototype.visitBinaryOperatorExpr = function (ast, context) { + return new BinaryOperatorExpr(ast.operator, ast.lhs.visitExpression(this, context), ast.rhs.visitExpression(this, context), ast.type); + }; + ExpressionTransformer.prototype.visitReadPropExpr = function (ast, context) { + return new ReadPropExpr(ast.receiver.visitExpression(this, context), ast.name, ast.type); + }; + ExpressionTransformer.prototype.visitReadKeyExpr = function (ast, context) { + return new ReadKeyExpr(ast.receiver.visitExpression(this, context), ast.index.visitExpression(this, context), ast.type); + }; + ExpressionTransformer.prototype.visitLiteralArrayExpr = function (ast, context) { + return new LiteralArrayExpr(this.visitAllExpressions(ast.entries, context)); + }; + ExpressionTransformer.prototype.visitLiteralMapExpr = function (ast, context) { + var _this = this; + var entries = ast.entries.map(function (entry) { return [entry[0], entry[1].visitExpression(_this, context),]; }); + return new LiteralMapExpr(entries); + }; + ExpressionTransformer.prototype.visitAllExpressions = function (exprs, context) { + var _this = this; + return exprs.map(function (expr) { return expr.visitExpression(_this, context); }); + }; + ExpressionTransformer.prototype.visitDeclareVarStmt = function (stmt, context) { + return new DeclareVarStmt(stmt.name, stmt.value.visitExpression(this, context), stmt.type, stmt.modifiers); + }; + ExpressionTransformer.prototype.visitDeclareFunctionStmt = function (stmt, context) { + // Don't descend into nested functions + return stmt; + }; + ExpressionTransformer.prototype.visitExpressionStmt = function (stmt, context) { + return new ExpressionStatement(stmt.expr.visitExpression(this, context)); + }; + ExpressionTransformer.prototype.visitReturnStmt = function (stmt, context) { + return new ReturnStatement(stmt.value.visitExpression(this, context)); + }; + ExpressionTransformer.prototype.visitDeclareClassStmt = function (stmt, context) { + // Don't descend into nested functions + return stmt; + }; + ExpressionTransformer.prototype.visitIfStmt = function (stmt, context) { + return new IfStmt(stmt.condition.visitExpression(this, context), this.visitAllStatements(stmt.trueCase, context), this.visitAllStatements(stmt.falseCase, context)); + }; + ExpressionTransformer.prototype.visitTryCatchStmt = function (stmt, context) { + return new TryCatchStmt(this.visitAllStatements(stmt.bodyStmts, context), this.visitAllStatements(stmt.catchStmts, context)); + }; + ExpressionTransformer.prototype.visitThrowStmt = function (stmt, context) { + return new ThrowStmt(stmt.error.visitExpression(this, context)); + }; + ExpressionTransformer.prototype.visitCommentStmt = function (stmt, context) { return stmt; }; + ExpressionTransformer.prototype.visitAllStatements = function (stmts, context) { + var _this = this; + return stmts.map(function (stmt) { return stmt.visitStatement(_this, context); }); + }; + return ExpressionTransformer; +}()); +var RecursiveExpressionVisitor = (function () { + function RecursiveExpressionVisitor() { + } + RecursiveExpressionVisitor.prototype.visitReadVarExpr = function (ast, context) { return ast; }; + RecursiveExpressionVisitor.prototype.visitWriteVarExpr = function (expr, context) { + expr.value.visitExpression(this, context); + return expr; + }; + RecursiveExpressionVisitor.prototype.visitWriteKeyExpr = function (expr, context) { + expr.receiver.visitExpression(this, context); + expr.index.visitExpression(this, context); + expr.value.visitExpression(this, context); + return expr; + }; + RecursiveExpressionVisitor.prototype.visitWritePropExpr = function (expr, context) { + expr.receiver.visitExpression(this, context); + expr.value.visitExpression(this, context); + return expr; + }; + RecursiveExpressionVisitor.prototype.visitInvokeMethodExpr = function (ast, context) { + ast.receiver.visitExpression(this, context); + this.visitAllExpressions(ast.args, context); + return ast; + }; + RecursiveExpressionVisitor.prototype.visitInvokeFunctionExpr = function (ast, context) { + ast.fn.visitExpression(this, context); + this.visitAllExpressions(ast.args, context); + return ast; + }; + RecursiveExpressionVisitor.prototype.visitInstantiateExpr = function (ast, context) { + ast.classExpr.visitExpression(this, context); + this.visitAllExpressions(ast.args, context); + return ast; + }; + RecursiveExpressionVisitor.prototype.visitLiteralExpr = function (ast, context) { return ast; }; + RecursiveExpressionVisitor.prototype.visitExternalExpr = function (ast, context) { return ast; }; + RecursiveExpressionVisitor.prototype.visitConditionalExpr = function (ast, context) { + ast.condition.visitExpression(this, context); + ast.trueCase.visitExpression(this, context); + ast.falseCase.visitExpression(this, context); + return ast; + }; + RecursiveExpressionVisitor.prototype.visitNotExpr = function (ast, context) { + ast.condition.visitExpression(this, context); + return ast; + }; + RecursiveExpressionVisitor.prototype.visitCastExpr = function (ast, context) { + ast.value.visitExpression(this, context); + return ast; + }; + RecursiveExpressionVisitor.prototype.visitFunctionExpr = function (ast, context) { return ast; }; + RecursiveExpressionVisitor.prototype.visitBinaryOperatorExpr = function (ast, context) { + ast.lhs.visitExpression(this, context); + ast.rhs.visitExpression(this, context); + return ast; + }; + RecursiveExpressionVisitor.prototype.visitReadPropExpr = function (ast, context) { + ast.receiver.visitExpression(this, context); + return ast; + }; + RecursiveExpressionVisitor.prototype.visitReadKeyExpr = function (ast, context) { + ast.receiver.visitExpression(this, context); + ast.index.visitExpression(this, context); + return ast; + }; + RecursiveExpressionVisitor.prototype.visitLiteralArrayExpr = function (ast, context) { + this.visitAllExpressions(ast.entries, context); + return ast; + }; + RecursiveExpressionVisitor.prototype.visitLiteralMapExpr = function (ast, context) { + var _this = this; + ast.entries.forEach(function (entry) { return entry[1].visitExpression(_this, context); }); + return ast; + }; + RecursiveExpressionVisitor.prototype.visitAllExpressions = function (exprs, context) { + var _this = this; + exprs.forEach(function (expr) { return expr.visitExpression(_this, context); }); + }; + RecursiveExpressionVisitor.prototype.visitDeclareVarStmt = function (stmt, context) { + stmt.value.visitExpression(this, context); + return stmt; + }; + RecursiveExpressionVisitor.prototype.visitDeclareFunctionStmt = function (stmt, context) { + // Don't descend into nested functions + return stmt; + }; + RecursiveExpressionVisitor.prototype.visitExpressionStmt = function (stmt, context) { + stmt.expr.visitExpression(this, context); + return stmt; + }; + RecursiveExpressionVisitor.prototype.visitReturnStmt = function (stmt, context) { + stmt.value.visitExpression(this, context); + return stmt; + }; + RecursiveExpressionVisitor.prototype.visitDeclareClassStmt = function (stmt, context) { + // Don't descend into nested functions + return stmt; + }; + RecursiveExpressionVisitor.prototype.visitIfStmt = function (stmt, context) { + stmt.condition.visitExpression(this, context); + this.visitAllStatements(stmt.trueCase, context); + this.visitAllStatements(stmt.falseCase, context); + return stmt; + }; + RecursiveExpressionVisitor.prototype.visitTryCatchStmt = function (stmt, context) { + this.visitAllStatements(stmt.bodyStmts, context); + this.visitAllStatements(stmt.catchStmts, context); + return stmt; + }; + RecursiveExpressionVisitor.prototype.visitThrowStmt = function (stmt, context) { + stmt.error.visitExpression(this, context); + return stmt; + }; + RecursiveExpressionVisitor.prototype.visitCommentStmt = function (stmt, context) { return stmt; }; + RecursiveExpressionVisitor.prototype.visitAllStatements = function (stmts, context) { + var _this = this; + stmts.forEach(function (stmt) { return stmt.visitStatement(_this, context); }); + }; + return RecursiveExpressionVisitor; +}()); +function replaceVarInExpression(varName, newValue, expression) { + var transformer = new _ReplaceVariableTransformer(varName, newValue); + return expression.visitExpression(transformer, null); +} +var _ReplaceVariableTransformer = (function (_super) { + __extends(_ReplaceVariableTransformer, _super); + function _ReplaceVariableTransformer(_varName, _newValue) { + _super.call(this); + this._varName = _varName; + this._newValue = _newValue; + } + _ReplaceVariableTransformer.prototype.visitReadVarExpr = function (ast, context) { + return ast.name == this._varName ? this._newValue : ast; + }; + return _ReplaceVariableTransformer; +}(ExpressionTransformer)); +function findReadVarNames(stmts) { + var finder = new _VariableFinder(); + finder.visitAllStatements(stmts, null); + return finder.varNames; +} +var _VariableFinder = (function (_super) { + __extends(_VariableFinder, _super); + function _VariableFinder() { + _super.apply(this, arguments); + this.varNames = new Set(); + } + _VariableFinder.prototype.visitReadVarExpr = function (ast, context) { + this.varNames.add(ast.name); + return null; + }; + return _VariableFinder; +}(RecursiveExpressionVisitor)); +function variable(name, type) { + if (type === void 0) { type = null; } + return new ReadVarExpr(name, type); +} +function importExpr(id, typeParams) { + if (typeParams === void 0) { typeParams = null; } + return new ExternalExpr(id, null, typeParams); +} +function importType(id, typeParams, typeModifiers) { + if (typeParams === void 0) { typeParams = null; } + if (typeModifiers === void 0) { typeModifiers = null; } + return __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__facade_lang__["a" /* isPresent */])(id) ? new ExternalType(id, typeParams, typeModifiers) : null; +} +function literalArr(values, type) { + if (type === void 0) { type = null; } + return new LiteralArrayExpr(values, type); +} +function literalMap(values, type) { + if (type === void 0) { type = null; } + return new LiteralMapExpr(values, type); +} +function not(expr) { + return new NotExpr(expr); +} +function fn(params, body, type) { + if (type === void 0) { type = null; } + return new FunctionExpr(params, body, type); +} +function literal(value, type) { + if (type === void 0) { type = null; } + return new LiteralExpr(value, type); +} +//# sourceMappingURL=output_ast.js.map + +/***/ }), +/* 13 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core__ = __webpack_require__(0); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__util_util__ = __webpack_require__(3); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__nav_params__ = __webpack_require__(45); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return ViewController; }); +/* harmony export (immutable) */ __webpack_exports__["a"] = isViewController; + + + +/** + * @name ViewController + * @description + * Access various features and information about the current view. + * @usage + * ```ts + * import { Component } from '@angular/core'; + * import { ViewController } from 'ionic-angular'; + * + * @Component({...}) + * export class MyPage{ + * + * constructor(public viewCtrl: ViewController) {} + * + * } + * ``` + */ +var ViewController = (function () { + function ViewController(component, data, rootCssClass) { + if (rootCssClass === void 0) { rootCssClass = DEFAULT_CSS_CLASS; } + this.component = component; + this._isHidden = false; + /** + * Observable to be subscribed to when the current component will become active + * @returns {Observable} Returns an observable + */ + this.willEnter = new __WEBPACK_IMPORTED_MODULE_0__angular_core__["d" /* EventEmitter */](); + /** + * Observable to be subscribed to when the current component has become active + * @returns {Observable} Returns an observable + */ + this.didEnter = new __WEBPACK_IMPORTED_MODULE_0__angular_core__["d" /* EventEmitter */](); + /** + * Observable to be subscribed to when the current component will no longer be active + * @returns {Observable} Returns an observable + */ + this.willLeave = new __WEBPACK_IMPORTED_MODULE_0__angular_core__["d" /* EventEmitter */](); + /** + * Observable to be subscribed to when the current component is no long active + * @returns {Observable} Returns an observable + */ + this.didLeave = new __WEBPACK_IMPORTED_MODULE_0__angular_core__["d" /* EventEmitter */](); + /** + * Observable to be subscribed to when the current component has been destroyed + * @returns {Observable} Returns an observable + */ + this.willUnload = new __WEBPACK_IMPORTED_MODULE_0__angular_core__["d" /* EventEmitter */](); + /** @private */ + this.isOverlay = false; + /** @private */ + this._emitter = new __WEBPACK_IMPORTED_MODULE_0__angular_core__["d" /* EventEmitter */](); + // passed in data could be NavParams, but all we care about is its data object + this.data = (data instanceof __WEBPACK_IMPORTED_MODULE_2__nav_params__["a" /* NavParams */] ? data.data : (__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util_util__["c" /* isPresent */])(data) ? data : {})); + this._cssClass = rootCssClass; + } + /** + * @private + */ + ViewController.prototype.init = function (componentRef) { + this._cmp = componentRef; + this.instance = this.instance || componentRef.instance; + this._detached = false; + }; + ViewController.prototype._setNav = function (navCtrl) { + this._nav = navCtrl; + }; + ViewController.prototype._setInstance = function (instance) { + this.instance = instance; + }; + /** + * @private + */ + ViewController.prototype.subscribe = function (generatorOrNext) { + return this._emitter.subscribe(generatorOrNext); + }; + /** + * @private + */ + ViewController.prototype.emit = function (data) { + this._emitter.emit(data); + }; + /** + * Called when the current viewController has be successfully dismissed + */ + ViewController.prototype.onDidDismiss = function (callback) { + this._onDidDismiss = callback; + }; + /** + * Called when the current viewController will be dismissed + */ + ViewController.prototype.onWillDismiss = function (callback) { + this._onWillDismiss = callback; + }; + /** + * Dismiss the current viewController + * @param {any} [data] Data that you want to return when the viewController is dismissed. + * @param {any} [role ] + * @param {NavOptions} NavOptions Options for the dismiss navigation. + * @returns {any} data Returns the data passed in, if any. + */ + ViewController.prototype.dismiss = function (data, role, navOptions) { + if (navOptions === void 0) { navOptions = {}; } + if (!this._nav) { + return Promise.resolve(false); + } + this._dismissData = data; + this._dismissRole = role; + var options = __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util_util__["l" /* assign */])({}, this._leavingOpts, navOptions); + return this._nav.removeView(this, options).then(function () { return data; }); + }; + /** + * @private + */ + ViewController.prototype.getNav = function () { + return this._nav; + }; + /** + * @private + */ + ViewController.prototype.getTransitionName = function (direction) { + return this._nav && this._nav.config.get('pageTransition'); + }; + /** + * @private + */ + ViewController.prototype.getNavParams = function () { + return new __WEBPACK_IMPORTED_MODULE_2__nav_params__["a" /* NavParams */](this.data); + }; + /** + * @private + */ + ViewController.prototype.setLeavingOpts = function (opts) { + this._leavingOpts = opts; + }; + /** + * Check to see if you can go back in the navigation stack. + * @returns {boolean} Returns if it's possible to go back from this Page. + */ + ViewController.prototype.enableBack = function () { + // update if it's possible to go back from this nav item + if (!this._nav) { + return false; + } + // the previous view may exist, but if it's about to be destroyed + // it shouldn't be able to go back to + var previousItem = this._nav.getPrevious(this); + return !!(previousItem); + }; + Object.defineProperty(ViewController.prototype, "name", { + /** + * @private + */ + get: function () { + return this.component ? this.component.name : ''; + }, + enumerable: true, + configurable: true + }); + Object.defineProperty(ViewController.prototype, "index", { + /** + * Get the index of the current component in the current navigation stack. + * @returns {number} Returns the index of this page within its `NavController`. + */ + get: function () { + return (this._nav ? this._nav.indexOf(this) : -1); + }, + enumerable: true, + configurable: true + }); + /** + * @returns {boolean} Returns if this Page is the first in the stack of pages within its NavController. + */ + ViewController.prototype.isFirst = function () { + return (this._nav ? this._nav.first() === this : false); + }; + /** + * @returns {boolean} Returns if this Page is the last in the stack of pages within its NavController. + */ + ViewController.prototype.isLast = function () { + return (this._nav ? this._nav.last() === this : false); + }; + /** + * @private + * DOM WRITE + */ + ViewController.prototype._domShow = function (shouldShow, renderer) { + // using hidden element attribute to display:none and not render views + // _hidden value of '' means the hidden attribute will be added + // _hidden value of null means the hidden attribute will be removed + // doing checks to make sure we only update the DOM when actually needed + if (this._cmp) { + // if it should render, then the hidden attribute should not be on the element + if (shouldShow === this._isHidden) { + this._isHidden = !shouldShow; + var value = (shouldShow ? null : ''); + // ******** DOM WRITE **************** + renderer.setElementAttribute(this.pageRef().nativeElement, 'hidden', value); + } + } + }; + /** + * @private + */ + ViewController.prototype.getZIndex = function () { + return this._zIndex; + }; + /** + * @private + * DOM WRITE + */ + ViewController.prototype._setZIndex = function (zIndex, renderer) { + if (zIndex !== this._zIndex) { + this._zIndex = zIndex; + var pageRef = this.pageRef(); + if (pageRef) { + // ******** DOM WRITE **************** + renderer.setElementStyle(pageRef.nativeElement, 'z-index', zIndex); + } + } + }; + /** + * @returns {ElementRef} Returns the Page's ElementRef. + */ + ViewController.prototype.pageRef = function () { + return this._cmp && this._cmp.location; + }; + ViewController.prototype._setContent = function (directive) { + this._cntDir = directive; + }; + /** + * @returns {component} Returns the Page's Content component reference. + */ + ViewController.prototype.getContent = function () { + return this._cntDir; + }; + ViewController.prototype._setContentRef = function (elementRef) { + this._cntRef = elementRef; + }; + /** + * @returns {ElementRef} Returns the Content's ElementRef. + */ + ViewController.prototype.contentRef = function () { + return this._cntRef; + }; + ViewController.prototype._setIONContent = function (content) { + this._setContent(content); + this._ionCntDir = content; + }; + /** + * @private + */ + ViewController.prototype.getIONContent = function () { + return this._ionCntDir; + }; + ViewController.prototype._setIONContentRef = function (elementRef) { + this._setContentRef(elementRef); + this._ionCntRef = elementRef; + }; + /** + * @private + */ + ViewController.prototype.getIONContentRef = function () { + return this._ionCntRef; + }; + ViewController.prototype._setHeader = function (directive) { + this._hdrDir = directive; + }; + /** + * @private + */ + ViewController.prototype.getHeader = function () { + return this._hdrDir; + }; + ViewController.prototype._setFooter = function (directive) { + this._ftrDir = directive; + }; + /** + * @private + */ + ViewController.prototype.getFooter = function () { + return this._ftrDir; + }; + ViewController.prototype._setNavbar = function (directive) { + this._nb = directive; + }; + /** + * @private + */ + ViewController.prototype.getNavbar = function () { + return this._nb; + }; + /** + * Find out if the current component has a NavBar or not. Be sure + * to wrap this in an `ionViewWillEnter` method in order to make sure + * the view has rendered fully. + * @returns {boolean} Returns a boolean if this Page has a navbar or not. + */ + ViewController.prototype.hasNavbar = function () { + return !!this._nb; + }; + /** + * Change the title of the back-button. Be sure to call this + * after `ionViewWillEnter` to make sure the DOM has been rendered. + * @param {string} backButtonText Set the back button text. + */ + ViewController.prototype.setBackButtonText = function (val) { + this._nb && this._nb.setBackButtonText(val); + }; + /** + * Set if the back button for the current view is visible or not. Be sure to call this + * after `ionViewWillEnter` to make sure the DOM has been rendered. + * @param {boolean} Set if this Page's back button should show or not. + */ + ViewController.prototype.showBackButton = function (shouldShow) { + if (this._nb) { + this._nb.hideBackButton = !shouldShow; + } + }; + ViewController.prototype._preLoad = function () { + this._lifecycle('PreLoad'); + }; + /** + * @private + * The view has loaded. This event only happens once per view will be created. + * This event is fired before the component and his children have been initialized. + */ + ViewController.prototype._willLoad = function () { + this._lifecycle('WillLoad'); + }; + /** + * @private + * The view has loaded. This event only happens once per view being + * created. If a view leaves but is cached, then this will not + * fire again on a subsequent viewing. This method is a good place + * to put your setup code for the view; however, it is not the + * recommended method to use when a view becomes active. + */ + ViewController.prototype._didLoad = function () { + this._lifecycle('DidLoad'); + }; + /** + * @private + * The view is about to enter and become the active view. + */ + ViewController.prototype._willEnter = function () { + if (this._detached && this._cmp) { + // ensure this has been re-attached to the change detector + this._cmp.changeDetectorRef.reattach(); + this._detached = false; + } + this.willEnter.emit(null); + this._lifecycle('WillEnter'); + }; + /** + * @private + * The view has fully entered and is now the active view. This + * will fire, whether it was the first load or loaded from the cache. + */ + ViewController.prototype._didEnter = function () { + this._nb && this._nb.didEnter(); + this.didEnter.emit(null); + this._lifecycle('DidEnter'); + }; + /** + * @private + * The view has is about to leave and no longer be the active view. + */ + ViewController.prototype._willLeave = function (willUnload) { + this.willLeave.emit(null); + this._lifecycle('WillLeave'); + if (willUnload && this._onWillDismiss) { + this._onWillDismiss(this._dismissData, this._dismissRole); + this._onWillDismiss = null; + } + }; + /** + * @private + * The view has finished leaving and is no longer the active view. This + * will fire, whether it is cached or unloaded. + */ + ViewController.prototype._didLeave = function () { + this.didLeave.emit(null); + this._lifecycle('DidLeave'); + // when this is not the active page + // we no longer need to detect changes + if (!this._detached && this._cmp) { + this._cmp.changeDetectorRef.detach(); + this._detached = true; + } + }; + /** + * @private + */ + ViewController.prototype._willUnload = function () { + this.willUnload.emit(null); + this._lifecycle('WillUnload'); + this._onDidDismiss && this._onDidDismiss(this._dismissData, this._dismissRole); + this._onDidDismiss = null; + this._dismissData = null; + this._dismissRole = null; + }; + /** + * @private + * DOM WRITE + */ + ViewController.prototype._destroy = function (renderer) { + if (this._cmp) { + if (renderer) { + // ensure the element is cleaned up for when the view pool reuses this element + // ******** DOM WRITE **************** + var cmpEle = this._cmp.location.nativeElement; + renderer.setElementAttribute(cmpEle, 'class', null); + renderer.setElementAttribute(cmpEle, 'style', null); + } + // completely destroy this component. boom. + this._cmp.destroy(); + } + this._nav = this._cmp = this.instance = this._cntDir = this._cntRef = this._hdrDir = this._ftrDir = this._nb = this._onDidDismiss = this._onWillDismiss = null; + }; + /** + * @private + */ + ViewController.prototype._lifecycleTest = function (lifecycle) { + var instance = this.instance; + var methodName = 'ionViewCan' + lifecycle; + if (instance && instance[methodName]) { + try { + var result = instance[methodName](); + if (result === false) { + return false; + } + else if (result instanceof Promise) { + return result; + } + else { + return true; + } + } + catch (e) { + console.error(this.name + " " + methodName + " error: " + e.message); + return false; + } + } + return true; + }; + ViewController.prototype._lifecycle = function (lifecycle) { + var instance = this.instance; + var methodName = 'ionView' + lifecycle; + if (instance && instance[methodName]) { + try { + instance[methodName](); + } + catch (e) { + console.error(this.name + " " + methodName + " error: " + e.message); + } + } + }; + ViewController.propDecorators = { + '_emitter': [{ type: __WEBPACK_IMPORTED_MODULE_0__angular_core__["P" /* Output */] },], + }; + return ViewController; +}()); +function isViewController(viewCtrl) { + return !!(viewCtrl && viewCtrl._didLoad && viewCtrl._willUnload); +} +var DEFAULT_CSS_CLASS = 'ion-page'; +//# sourceMappingURL=view-controller.js.map + +/***/ }), +/* 14 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core__ = __webpack_require__(0); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__angular_platform_browser__ = __webpack_require__(75); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__config_config__ = __webpack_require__(5); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__navigation_nav_util__ = __webpack_require__(77); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__platform_platform__ = __webpack_require__(28); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__menu_menu_controller__ = __webpack_require__(65); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return App; }); + + + + + + +/** + * @name App + * @description + * App is a utility class used in Ionic to get information about various aspects of an app + */ +var App = (function () { + function App(_config, _platform, _menuCtrl) { + this._config = _config; + this._platform = _platform; + this._menuCtrl = _menuCtrl; + this._disTime = 0; + this._scrollTime = 0; + this._title = ''; + this._titleSrv = new __WEBPACK_IMPORTED_MODULE_1__angular_platform_browser__["a" /* Title */](); + this._rootNav = null; + /** + * @private + */ + this.viewDidLoad = new __WEBPACK_IMPORTED_MODULE_0__angular_core__["d" /* EventEmitter */](); + /** + * @private + */ + this.viewWillEnter = new __WEBPACK_IMPORTED_MODULE_0__angular_core__["d" /* EventEmitter */](); + /** + * @private + */ + this.viewDidEnter = new __WEBPACK_IMPORTED_MODULE_0__angular_core__["d" /* EventEmitter */](); + /** + * @private + */ + this.viewWillLeave = new __WEBPACK_IMPORTED_MODULE_0__angular_core__["d" /* EventEmitter */](); + /** + * @private + */ + this.viewDidLeave = new __WEBPACK_IMPORTED_MODULE_0__angular_core__["d" /* EventEmitter */](); + /** + * @private + */ + this.viewWillUnload = new __WEBPACK_IMPORTED_MODULE_0__angular_core__["d" /* EventEmitter */](); + // listen for hardware back button events + // register this back button action with a default priority + _platform.registerBackButtonAction(this.goBack.bind(this)); + this._disableScrollAssist = _config.getBoolean('disableScrollAssist', false); + (void 0) /* runInDev */; + } + /** + * Sets the document title. + * @param {string} val Value to set the document title to. + */ + App.prototype.setTitle = function (val) { + if (val !== this._title) { + this._title = val; + this._titleSrv.setTitle(val); + } + }; + /** + * @private + */ + App.prototype.setElementClass = function (className, isAdd) { + this._appRoot.setElementClass(className, isAdd); + }; + /** + * @private + * Sets if the app is currently enabled or not, meaning if it's + * available to accept new user commands. For example, this is set to `false` + * while views transition, a modal slides up, an action-sheet + * slides up, etc. After the transition completes it is set back to `true`. + * @param {boolean} isEnabled `true` for enabled, `false` for disabled + * @param {number} duration When `isEnabled` is set to `false`, this argument + * is used to set the maximum number of milliseconds that app will wait until + * it will automatically enable the app again. It's basically a fallback incase + * something goes wrong during a transition and the app wasn't re-enabled correctly. + */ + App.prototype.setEnabled = function (isEnabled, duration) { + if (duration === void 0) { duration = 700; } + this._disTime = (isEnabled ? 0 : Date.now() + duration); + if (this._clickBlock) { + if (isEnabled) { + // disable the click block if it's enabled, or the duration is tiny + this._clickBlock.activate(false, CLICK_BLOCK_BUFFER_IN_MILLIS); + } + else { + // show the click block for duration + some number + this._clickBlock.activate(true, duration + CLICK_BLOCK_BUFFER_IN_MILLIS); + } + } + }; + /** + * @private + * Toggles whether an application can be scrolled + * @param {boolean} disableScroll when set to `false`, the application's + * scrolling is enabled. When set to `true`, scrolling is disabled. + */ + App.prototype._setDisableScroll = function (disableScroll) { + if (this._disableScrollAssist) { + this._appRoot._disableScroll(disableScroll); + } + }; + /** + * @private + * Boolean if the app is actively enabled or not. + * @return {boolean} + */ + App.prototype.isEnabled = function () { + var disTime = this._disTime; + if (disTime === 0) { + return true; + } + return (disTime < Date.now()); + }; + /** + * @private + */ + App.prototype.setScrolling = function () { + this._scrollTime = Date.now() + ACTIVE_SCROLLING_TIME; + }; + /** + * Boolean if the app is actively scrolling or not. + * @return {boolean} returns true or false + */ + App.prototype.isScrolling = function () { + var scrollTime = this._scrollTime; + if (scrollTime === 0) { + return false; + } + if (scrollTime < Date.now()) { + this._scrollTime = 0; + return false; + } + return true; + }; + /** + * @private + */ + App.prototype.getActiveNav = function () { + var portal = this._appRoot._getPortal(MODAL); + if (portal.length() > 0) { + return findTopNav(portal); + } + return findTopNav(this._rootNav || null); + }; + /** + * @return {NavController} Returns the root NavController + */ + App.prototype.getRootNav = function () { + return this._rootNav; + }; + /** + * @private + */ + App.prototype._setRootNav = function (nav) { + this._rootNav = nav; + }; + /** + * @private + */ + App.prototype.present = function (enteringView, opts, appPortal) { + var portal = this._appRoot._getPortal(appPortal); + enteringView._setNav(portal); + opts.keyboardClose = false; + opts.direction = __WEBPACK_IMPORTED_MODULE_3__navigation_nav_util__["e" /* DIRECTION_FORWARD */]; + if (!opts.animation) { + opts.animation = enteringView.getTransitionName(__WEBPACK_IMPORTED_MODULE_3__navigation_nav_util__["e" /* DIRECTION_FORWARD */]); + } + enteringView.setLeavingOpts({ + keyboardClose: false, + direction: __WEBPACK_IMPORTED_MODULE_3__navigation_nav_util__["d" /* DIRECTION_BACK */], + animation: enteringView.getTransitionName(__WEBPACK_IMPORTED_MODULE_3__navigation_nav_util__["d" /* DIRECTION_BACK */]), + ev: opts.ev + }); + return portal.insertPages(-1, [enteringView], opts); + }; + /** + * @private + */ + App.prototype.goBack = function () { + if (this._menuCtrl && this._menuCtrl.isOpen()) { + return this._menuCtrl.close(); + } + var navPromise = this.navPop(); + if (navPromise === null) { + // no views to go back to + // let's exit the app + if (this._config.getBoolean('navExitApp', true)) { + (void 0) /* console.debug */; + this._platform.exitApp(); + } + } + return navPromise; + }; + /** + * @private + */ + App.prototype.navPop = function () { + if (!this._rootNav || !this.isEnabled()) { + return Promise.resolve(); + } + // If there are any alert/actionsheet open, let's do nothing + var portal = this._appRoot._getPortal(DEFAULT); + if (portal.length() > 0) { + return Promise.resolve(); + } + // next get the active nav, check itself and climb up all + // of its parent navs until it finds a nav that can pop + return recursivePop(this.getActiveNav()); + }; + App.decorators = [ + { type: __WEBPACK_IMPORTED_MODULE_0__angular_core__["c" /* Injectable */] }, + ]; + /** @nocollapse */ + App.ctorParameters = [ + { type: __WEBPACK_IMPORTED_MODULE_2__config_config__["a" /* Config */], }, + { type: __WEBPACK_IMPORTED_MODULE_4__platform_platform__["a" /* Platform */], }, + { type: __WEBPACK_IMPORTED_MODULE_5__menu_menu_controller__["a" /* MenuController */], decorators: [{ type: __WEBPACK_IMPORTED_MODULE_0__angular_core__["h" /* Optional */] },] }, + ]; + return App; +}()); +function recursivePop(nav) { + if (!nav) { + return null; + } + if (__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_3__navigation_nav_util__["h" /* isNav */])(nav)) { + var len = nav.length(); + if (len > 1 || (nav._isPortal && len > 0)) { + // this nav controller has more than one view + // pop the current view on this nav and we're done here + (void 0) /* console.debug */; + return nav.pop(); + } + } + // try again using the parent nav (if there is one) + return recursivePop(nav.parent); +} +function findTopNav(nav) { + var activeChildNav; + while (nav) { + activeChildNav = nav.getActiveChildNav(); + if (!activeChildNav) { + break; + } + nav = activeChildNav; + } + return nav; +} +var DEFAULT = 0; // AppPortal.DEFAULT +var MODAL = 1; // AppPortal.MODAL +var ACTIVE_SCROLLING_TIME = 100; +var CLICK_BLOCK_BUFFER_IN_MILLIS = 64; +//# sourceMappingURL=app.js.map + +/***/ }), +/* 15 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var __extends = (this && this.__extends) || function (d, b) { + for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); +}; +var Observable_1 = __webpack_require__(1); +var Subscriber_1 = __webpack_require__(4); +var Subscription_1 = __webpack_require__(19); +var ObjectUnsubscribedError_1 = __webpack_require__(236); +var SubjectSubscription_1 = __webpack_require__(652); +var rxSubscriber_1 = __webpack_require__(143); +/** + * @class SubjectSubscriber + */ +var SubjectSubscriber = (function (_super) { + __extends(SubjectSubscriber, _super); + function SubjectSubscriber(destination) { + _super.call(this, destination); + this.destination = destination; + } + return SubjectSubscriber; +}(Subscriber_1.Subscriber)); +exports.SubjectSubscriber = SubjectSubscriber; +/** + * @class Subject + */ +var Subject = (function (_super) { + __extends(Subject, _super); + function Subject() { + _super.call(this); + this.observers = []; + this.closed = false; + this.isStopped = false; + this.hasError = false; + this.thrownError = null; + } + Subject.prototype[rxSubscriber_1.$$rxSubscriber] = function () { + return new SubjectSubscriber(this); + }; + Subject.prototype.lift = function (operator) { + var subject = new AnonymousSubject(this, this); + subject.operator = operator; + return subject; + }; + Subject.prototype.next = function (value) { + if (this.closed) { + throw new ObjectUnsubscribedError_1.ObjectUnsubscribedError(); + } + if (!this.isStopped) { + var observers = this.observers; + var len = observers.length; + var copy = observers.slice(); + for (var i = 0; i < len; i++) { + copy[i].next(value); + } + } + }; + Subject.prototype.error = function (err) { + if (this.closed) { + throw new ObjectUnsubscribedError_1.ObjectUnsubscribedError(); + } + this.hasError = true; + this.thrownError = err; + this.isStopped = true; + var observers = this.observers; + var len = observers.length; + var copy = observers.slice(); + for (var i = 0; i < len; i++) { + copy[i].error(err); + } + this.observers.length = 0; + }; + Subject.prototype.complete = function () { + if (this.closed) { + throw new ObjectUnsubscribedError_1.ObjectUnsubscribedError(); + } + this.isStopped = true; + var observers = this.observers; + var len = observers.length; + var copy = observers.slice(); + for (var i = 0; i < len; i++) { + copy[i].complete(); + } + this.observers.length = 0; + }; + Subject.prototype.unsubscribe = function () { + this.isStopped = true; + this.closed = true; + this.observers = null; + }; + Subject.prototype._subscribe = function (subscriber) { + if (this.closed) { + throw new ObjectUnsubscribedError_1.ObjectUnsubscribedError(); + } + else if (this.hasError) { + subscriber.error(this.thrownError); + return Subscription_1.Subscription.EMPTY; + } + else if (this.isStopped) { + subscriber.complete(); + return Subscription_1.Subscription.EMPTY; + } + else { + this.observers.push(subscriber); + return new SubjectSubscription_1.SubjectSubscription(this, subscriber); + } + }; + Subject.prototype.asObservable = function () { + var observable = new Observable_1.Observable(); + observable.source = this; + return observable; + }; + Subject.create = function (destination, source) { + return new AnonymousSubject(destination, source); + }; + return Subject; +}(Observable_1.Observable)); +exports.Subject = Subject; +/** + * @class AnonymousSubject + */ +var AnonymousSubject = (function (_super) { + __extends(AnonymousSubject, _super); + function AnonymousSubject(destination, source) { + _super.call(this); + this.destination = destination; + this.source = source; + } + AnonymousSubject.prototype.next = function (value) { + var destination = this.destination; + if (destination && destination.next) { + destination.next(value); + } + }; + AnonymousSubject.prototype.error = function (err) { + var destination = this.destination; + if (destination && destination.error) { + this.destination.error(err); + } + }; + AnonymousSubject.prototype.complete = function () { + var destination = this.destination; + if (destination && destination.complete) { + this.destination.complete(); + } + }; + AnonymousSubject.prototype._subscribe = function (subscriber) { + var source = this.source; + if (source) { + return this.source.subscribe(subscriber); + } + else { + return Subscription_1.Subscription.EMPTY; + } + }; + return AnonymousSubject; +}(Subject)); +exports.AnonymousSubject = AnonymousSubject; +//# sourceMappingURL=Subject.js.map + +/***/ }), +/* 16 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core__ = __webpack_require__(0); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_app_app__ = __webpack_require__(14); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return GESTURE_GO_BACK_SWIPE; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return GESTURE_MENU_SWIPE; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return GESTURE_ITEM_SWIPE; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return GESTURE_REFRESHER; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return GESTURE_TOGGLE; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return BLOCK_ALL; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return GestureController; }); +/* unused harmony export GestureDelegate */ +/* unused harmony export BlockerDelegate */ + + +/** @private */ +var GESTURE_GO_BACK_SWIPE = 'goback-swipe'; +/** @private */ +var GESTURE_MENU_SWIPE = 'menu-swipe'; +/** @private */ +var GESTURE_ITEM_SWIPE = 'item-swipe'; +/** @private */ +var GESTURE_REFRESHER = 'refresher'; +/** @private */ +var GESTURE_TOGGLE = 'toggle'; +/** +* @private +*/ +var BLOCK_ALL = { + disable: [GESTURE_MENU_SWIPE, GESTURE_GO_BACK_SWIPE], + disableScroll: true +}; +/** +* @private +*/ +var GestureController = (function () { + function GestureController(_app) { + this._app = _app; + this.id = 1; + this.requestedStart = {}; + this.disabledGestures = {}; + this.disabledScroll = new Set(); + this.capturedID = null; + } + GestureController.prototype.createGesture = function (opts) { + if (!opts.name) { + throw new Error('name is undefined'); + } + return new GestureDelegate(opts.name, this.newID(), this, opts.priority || 0, !!opts.disableScroll); + }; + GestureController.prototype.createBlocker = function (opts) { + if (opts === void 0) { opts = {}; } + return new BlockerDelegate(this.newID(), this, opts.disable, !!opts.disableScroll); + }; + GestureController.prototype.newID = function () { + var id = this.id; + this.id++; + return id; + }; + GestureController.prototype.start = function (gestureName, id, priority) { + if (!this.canStart(gestureName)) { + delete this.requestedStart[id]; + return false; + } + this.requestedStart[id] = priority; + return true; + }; + GestureController.prototype.capture = function (gestureName, id, priority) { + if (!this.start(gestureName, id, priority)) { + return false; + } + var requestedStart = this.requestedStart; + var maxPriority = -10000 /* Minimun */; + for (var gestureID in requestedStart) { + maxPriority = Math.max(maxPriority, requestedStart[gestureID]); + } + if (maxPriority === priority) { + this.capturedID = id; + this.requestedStart = {}; + (void 0) /* console.debug */; + return true; + } + delete requestedStart[id]; + (void 0) /* console.debug */; + return false; + }; + GestureController.prototype.release = function (id) { + delete this.requestedStart[id]; + if (this.capturedID && id === this.capturedID) { + this.capturedID = null; + } + }; + GestureController.prototype.disableGesture = function (gestureName, id) { + var set = this.disabledGestures[gestureName]; + if (!set) { + set = new Set(); + this.disabledGestures[gestureName] = set; + } + set.add(id); + }; + GestureController.prototype.enableGesture = function (gestureName, id) { + var set = this.disabledGestures[gestureName]; + if (set) { + set.delete(id); + } + }; + GestureController.prototype.disableScroll = function (id) { + var isEnabled = !this.isScrollDisabled(); + this.disabledScroll.add(id); + if (this._app && isEnabled && this.isScrollDisabled()) { + (void 0) /* console.debug */; + this._app._setDisableScroll(true); + } + }; + GestureController.prototype.enableScroll = function (id) { + var isDisabled = this.isScrollDisabled(); + this.disabledScroll.delete(id); + if (this._app && isDisabled && !this.isScrollDisabled()) { + (void 0) /* console.debug */; + this._app._setDisableScroll(false); + } + }; + GestureController.prototype.canStart = function (gestureName) { + if (this.capturedID) { + (void 0) /* console.debug */; + // a gesture already captured + return false; + } + if (this.isDisabled(gestureName)) { + (void 0) /* console.debug */; + return false; + } + return true; + }; + GestureController.prototype.isCaptured = function () { + return !!this.capturedID; + }; + GestureController.prototype.isScrollDisabled = function () { + return this.disabledScroll.size > 0; + }; + GestureController.prototype.isDisabled = function (gestureName) { + var disabled = this.disabledGestures[gestureName]; + if (disabled && disabled.size > 0) { + return true; + } + return false; + }; + GestureController.decorators = [ + { type: __WEBPACK_IMPORTED_MODULE_0__angular_core__["c" /* Injectable */] }, + ]; + /** @nocollapse */ + GestureController.ctorParameters = [ + { type: __WEBPACK_IMPORTED_MODULE_1__components_app_app__["a" /* App */], decorators: [{ type: __WEBPACK_IMPORTED_MODULE_0__angular_core__["f" /* Inject */], args: [__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__angular_core__["g" /* forwardRef */])(function () { return __WEBPACK_IMPORTED_MODULE_1__components_app_app__["a" /* App */]; }),] },] }, + ]; + return GestureController; +}()); +/** +* @private +*/ +var GestureDelegate = (function () { + function GestureDelegate(name, id, controller, priority, disableScroll) { + this.name = name; + this.id = id; + this.controller = controller; + this.priority = priority; + this.disableScroll = disableScroll; + } + GestureDelegate.prototype.canStart = function () { + if (!this.controller) { + (void 0) /* assert */; + return false; + } + return this.controller.canStart(this.name); + }; + GestureDelegate.prototype.start = function () { + if (!this.controller) { + (void 0) /* assert */; + return false; + } + return this.controller.start(this.name, this.id, this.priority); + }; + GestureDelegate.prototype.capture = function () { + if (!this.controller) { + (void 0) /* assert */; + return false; + } + var captured = this.controller.capture(this.name, this.id, this.priority); + if (captured && this.disableScroll) { + this.controller.disableScroll(this.id); + } + return captured; + }; + GestureDelegate.prototype.release = function () { + if (!this.controller) { + (void 0) /* assert */; + return; + } + this.controller.release(this.id); + if (this.disableScroll) { + this.controller.enableScroll(this.id); + } + }; + GestureDelegate.prototype.destroy = function () { + this.release(); + this.controller = null; + }; + return GestureDelegate; +}()); +/** +* @private +*/ +var BlockerDelegate = (function () { + function BlockerDelegate(id, controller, disable, disableScroll) { + this.id = id; + this.controller = controller; + this.disable = disable; + this.disableScroll = disableScroll; + this.blocked = false; + } + BlockerDelegate.prototype.block = function () { + var _this = this; + if (!this.controller) { + (void 0) /* assert */; + return; + } + if (this.disable) { + this.disable.forEach(function (gesture) { + _this.controller.disableGesture(gesture, _this.id); + }); + } + if (this.disableScroll) { + this.controller.disableScroll(this.id); + } + this.blocked = true; + }; + BlockerDelegate.prototype.unblock = function () { + var _this = this; + if (!this.controller) { + (void 0) /* assert */; + return; + } + if (this.disable) { + this.disable.forEach(function (gesture) { + _this.controller.enableGesture(gesture, _this.id); + }); + } + if (this.disableScroll) { + this.controller.enableScroll(this.id); + } + this.blocked = false; + }; + BlockerDelegate.prototype.destroy = function () { + this.unblock(); + this.controller = null; + }; + return BlockerDelegate; +}()); +//# sourceMappingURL=gesture-controller.js.map + +/***/ }), +/* 17 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core__ = __webpack_require__(0); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__compile_metadata__ = __webpack_require__(26); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__private_import_core__ = __webpack_require__(18); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return Identifiers; }); +/* unused harmony export assetUrl */ +/* harmony export (immutable) */ __webpack_exports__["a"] = resolveIdentifier; +/* harmony export (immutable) */ __webpack_exports__["c"] = identifierToken; +/* harmony export (immutable) */ __webpack_exports__["e"] = resolveIdentifierToken; +/* harmony export (immutable) */ __webpack_exports__["d"] = resolveEnumIdentifier; +/** + * @license + * Copyright Google Inc. All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */ + + + +var APP_VIEW_MODULE_URL = assetUrl('core', 'linker/view'); +var VIEW_UTILS_MODULE_URL = assetUrl('core', 'linker/view_utils'); +var CD_MODULE_URL = assetUrl('core', 'change_detection/change_detection'); +var ANIMATION_STYLE_UTIL_ASSET_URL = assetUrl('core', 'animation/animation_style_util'); +var Identifiers = (function () { + function Identifiers() { + } + Identifiers.ANALYZE_FOR_ENTRY_COMPONENTS = { + name: 'ANALYZE_FOR_ENTRY_COMPONENTS', + moduleUrl: assetUrl('core', 'metadata/di'), + runtime: __WEBPACK_IMPORTED_MODULE_0__angular_core__["_2" /* ANALYZE_FOR_ENTRY_COMPONENTS */] + }; + Identifiers.ViewUtils = { + name: 'ViewUtils', + moduleUrl: assetUrl('core', 'linker/view_utils'), + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].ViewUtils + }; + Identifiers.AppView = { name: 'AppView', moduleUrl: APP_VIEW_MODULE_URL, runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["d" /* AppView */] }; + Identifiers.DebugAppView = { + name: 'DebugAppView', + moduleUrl: APP_VIEW_MODULE_URL, + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["e" /* DebugAppView */] + }; + Identifiers.ViewContainer = { + name: 'ViewContainer', + moduleUrl: assetUrl('core', 'linker/view_container'), + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["f" /* ViewContainer */] + }; + Identifiers.ElementRef = { + name: 'ElementRef', + moduleUrl: assetUrl('core', 'linker/element_ref'), + runtime: __WEBPACK_IMPORTED_MODULE_0__angular_core__["E" /* ElementRef */] + }; + Identifiers.ViewContainerRef = { + name: 'ViewContainerRef', + moduleUrl: assetUrl('core', 'linker/view_container_ref'), + runtime: __WEBPACK_IMPORTED_MODULE_0__angular_core__["B" /* ViewContainerRef */] + }; + Identifiers.ChangeDetectorRef = { + name: 'ChangeDetectorRef', + moduleUrl: assetUrl('core', 'change_detection/change_detector_ref'), + runtime: __WEBPACK_IMPORTED_MODULE_0__angular_core__["v" /* ChangeDetectorRef */] + }; + Identifiers.RenderComponentType = { + name: 'RenderComponentType', + moduleUrl: assetUrl('core', 'render/api'), + runtime: __WEBPACK_IMPORTED_MODULE_0__angular_core__["_4" /* RenderComponentType */] + }; + Identifiers.QueryList = { + name: 'QueryList', + moduleUrl: assetUrl('core', 'linker/query_list'), + runtime: __WEBPACK_IMPORTED_MODULE_0__angular_core__["_5" /* QueryList */] + }; + Identifiers.TemplateRef = { + name: 'TemplateRef', + moduleUrl: assetUrl('core', 'linker/template_ref'), + runtime: __WEBPACK_IMPORTED_MODULE_0__angular_core__["A" /* TemplateRef */] + }; + Identifiers.TemplateRef_ = { + name: 'TemplateRef_', + moduleUrl: assetUrl('core', 'linker/template_ref'), + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["g" /* TemplateRef_ */] + }; + Identifiers.CodegenComponentFactoryResolver = { + name: 'CodegenComponentFactoryResolver', + moduleUrl: assetUrl('core', 'linker/component_factory_resolver'), + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["h" /* CodegenComponentFactoryResolver */] + }; + Identifiers.ComponentFactoryResolver = { + name: 'ComponentFactoryResolver', + moduleUrl: assetUrl('core', 'linker/component_factory_resolver'), + runtime: __WEBPACK_IMPORTED_MODULE_0__angular_core__["Y" /* ComponentFactoryResolver */] + }; + Identifiers.ComponentFactory = { + name: 'ComponentFactory', + runtime: __WEBPACK_IMPORTED_MODULE_0__angular_core__["_6" /* ComponentFactory */], + moduleUrl: assetUrl('core', 'linker/component_factory') + }; + Identifiers.ComponentRef_ = { + name: 'ComponentRef_', + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["i" /* ComponentRef_ */], + moduleUrl: assetUrl('core', 'linker/component_factory') + }; + Identifiers.ComponentRef = { + name: 'ComponentRef', + runtime: __WEBPACK_IMPORTED_MODULE_0__angular_core__["_7" /* ComponentRef */], + moduleUrl: assetUrl('core', 'linker/component_factory') + }; + Identifiers.NgModuleFactory = { + name: 'NgModuleFactory', + runtime: __WEBPACK_IMPORTED_MODULE_0__angular_core__["_8" /* NgModuleFactory */], + moduleUrl: assetUrl('core', 'linker/ng_module_factory') + }; + Identifiers.NgModuleInjector = { + name: 'NgModuleInjector', + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["j" /* NgModuleInjector */], + moduleUrl: assetUrl('core', 'linker/ng_module_factory') + }; + Identifiers.RegisterModuleFactoryFn = { + name: 'registerModuleFactory', + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["k" /* registerModuleFactory */], + moduleUrl: assetUrl('core', 'linker/ng_module_factory_loader') + }; + Identifiers.ValueUnwrapper = { name: 'ValueUnwrapper', moduleUrl: CD_MODULE_URL, runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["l" /* ValueUnwrapper */] }; + Identifiers.Injector = { + name: 'Injector', + moduleUrl: assetUrl('core', 'di/injector'), + runtime: __WEBPACK_IMPORTED_MODULE_0__angular_core__["V" /* Injector */] + }; + Identifiers.ViewEncapsulation = { + name: 'ViewEncapsulation', + moduleUrl: assetUrl('core', 'metadata/view'), + runtime: __WEBPACK_IMPORTED_MODULE_0__angular_core__["N" /* ViewEncapsulation */] + }; + Identifiers.ViewType = { + name: 'ViewType', + moduleUrl: assetUrl('core', 'linker/view_type'), + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["m" /* ViewType */] + }; + Identifiers.ChangeDetectionStrategy = { + name: 'ChangeDetectionStrategy', + moduleUrl: CD_MODULE_URL, + runtime: __WEBPACK_IMPORTED_MODULE_0__angular_core__["S" /* ChangeDetectionStrategy */] + }; + Identifiers.StaticNodeDebugInfo = { + name: 'StaticNodeDebugInfo', + moduleUrl: assetUrl('core', 'linker/debug_context'), + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["n" /* StaticNodeDebugInfo */] + }; + Identifiers.DebugContext = { + name: 'DebugContext', + moduleUrl: assetUrl('core', 'linker/debug_context'), + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["o" /* DebugContext */] + }; + Identifiers.Renderer = { + name: 'Renderer', + moduleUrl: assetUrl('core', 'render/api'), + runtime: __WEBPACK_IMPORTED_MODULE_0__angular_core__["F" /* Renderer */] + }; + Identifiers.SimpleChange = { name: 'SimpleChange', moduleUrl: CD_MODULE_URL, runtime: __WEBPACK_IMPORTED_MODULE_0__angular_core__["_9" /* SimpleChange */] }; + Identifiers.UNINITIALIZED = { name: 'UNINITIALIZED', moduleUrl: CD_MODULE_URL, runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["p" /* UNINITIALIZED */] }; + Identifiers.ChangeDetectorStatus = { + name: 'ChangeDetectorStatus', + moduleUrl: CD_MODULE_URL, + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["q" /* ChangeDetectorStatus */] + }; + Identifiers.checkBinding = { + name: 'checkBinding', + moduleUrl: VIEW_UTILS_MODULE_URL, + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].checkBinding + }; + Identifiers.devModeEqual = { name: 'devModeEqual', moduleUrl: CD_MODULE_URL, runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["r" /* devModeEqual */] }; + Identifiers.inlineInterpolate = { + name: 'inlineInterpolate', + moduleUrl: VIEW_UTILS_MODULE_URL, + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].inlineInterpolate + }; + Identifiers.interpolate = { + name: 'interpolate', + moduleUrl: VIEW_UTILS_MODULE_URL, + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].interpolate + }; + Identifiers.castByValue = { + name: 'castByValue', + moduleUrl: VIEW_UTILS_MODULE_URL, + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].castByValue + }; + Identifiers.EMPTY_ARRAY = { + name: 'EMPTY_ARRAY', + moduleUrl: VIEW_UTILS_MODULE_URL, + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].EMPTY_ARRAY + }; + Identifiers.EMPTY_MAP = { + name: 'EMPTY_MAP', + moduleUrl: VIEW_UTILS_MODULE_URL, + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].EMPTY_MAP + }; + Identifiers.createRenderElement = { + name: 'createRenderElement', + moduleUrl: VIEW_UTILS_MODULE_URL, + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].createRenderElement + }; + Identifiers.selectOrCreateRenderHostElement = { + name: 'selectOrCreateRenderHostElement', + moduleUrl: VIEW_UTILS_MODULE_URL, + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].selectOrCreateRenderHostElement + }; + Identifiers.pureProxies = [ + null, + { name: 'pureProxy1', moduleUrl: VIEW_UTILS_MODULE_URL, runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].pureProxy1 }, + { name: 'pureProxy2', moduleUrl: VIEW_UTILS_MODULE_URL, runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].pureProxy2 }, + { name: 'pureProxy3', moduleUrl: VIEW_UTILS_MODULE_URL, runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].pureProxy3 }, + { name: 'pureProxy4', moduleUrl: VIEW_UTILS_MODULE_URL, runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].pureProxy4 }, + { name: 'pureProxy5', moduleUrl: VIEW_UTILS_MODULE_URL, runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].pureProxy5 }, + { name: 'pureProxy6', moduleUrl: VIEW_UTILS_MODULE_URL, runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].pureProxy6 }, + { name: 'pureProxy7', moduleUrl: VIEW_UTILS_MODULE_URL, runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].pureProxy7 }, + { name: 'pureProxy8', moduleUrl: VIEW_UTILS_MODULE_URL, runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].pureProxy8 }, + { name: 'pureProxy9', moduleUrl: VIEW_UTILS_MODULE_URL, runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].pureProxy9 }, + { name: 'pureProxy10', moduleUrl: VIEW_UTILS_MODULE_URL, runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].pureProxy10 }, + ]; + Identifiers.SecurityContext = { + name: 'SecurityContext', + moduleUrl: assetUrl('core', 'security'), + runtime: __WEBPACK_IMPORTED_MODULE_0__angular_core__["I" /* SecurityContext */], + }; + Identifiers.AnimationKeyframe = { + name: 'AnimationKeyframe', + moduleUrl: assetUrl('core', 'animation/animation_keyframe'), + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["s" /* AnimationKeyframe */] + }; + Identifiers.AnimationStyles = { + name: 'AnimationStyles', + moduleUrl: assetUrl('core', 'animation/animation_styles'), + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["t" /* AnimationStyles */] + }; + Identifiers.NoOpAnimationPlayer = { + name: 'NoOpAnimationPlayer', + moduleUrl: assetUrl('core', 'animation/animation_player'), + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["u" /* NoOpAnimationPlayer */] + }; + Identifiers.AnimationGroupPlayer = { + name: 'AnimationGroupPlayer', + moduleUrl: assetUrl('core', 'animation/animation_group_player'), + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["v" /* AnimationGroupPlayer */] + }; + Identifiers.AnimationSequencePlayer = { + name: 'AnimationSequencePlayer', + moduleUrl: assetUrl('core', 'animation/animation_sequence_player'), + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["w" /* AnimationSequencePlayer */] + }; + Identifiers.prepareFinalAnimationStyles = { + name: 'prepareFinalAnimationStyles', + moduleUrl: ANIMATION_STYLE_UTIL_ASSET_URL, + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["x" /* prepareFinalAnimationStyles */] + }; + Identifiers.balanceAnimationKeyframes = { + name: 'balanceAnimationKeyframes', + moduleUrl: ANIMATION_STYLE_UTIL_ASSET_URL, + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["y" /* balanceAnimationKeyframes */] + }; + Identifiers.clearStyles = { + name: 'clearStyles', + moduleUrl: ANIMATION_STYLE_UTIL_ASSET_URL, + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["z" /* clearStyles */] + }; + Identifiers.renderStyles = { + name: 'renderStyles', + moduleUrl: ANIMATION_STYLE_UTIL_ASSET_URL, + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["A" /* renderStyles */] + }; + Identifiers.collectAndResolveStyles = { + name: 'collectAndResolveStyles', + moduleUrl: ANIMATION_STYLE_UTIL_ASSET_URL, + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["B" /* collectAndResolveStyles */] + }; + Identifiers.LOCALE_ID = { + name: 'LOCALE_ID', + moduleUrl: assetUrl('core', 'i18n/tokens'), + runtime: __WEBPACK_IMPORTED_MODULE_0__angular_core__["t" /* LOCALE_ID */] + }; + Identifiers.TRANSLATIONS_FORMAT = { + name: 'TRANSLATIONS_FORMAT', + moduleUrl: assetUrl('core', 'i18n/tokens'), + runtime: __WEBPACK_IMPORTED_MODULE_0__angular_core__["_10" /* TRANSLATIONS_FORMAT */] + }; + Identifiers.setBindingDebugInfo = { + name: 'setBindingDebugInfo', + moduleUrl: VIEW_UTILS_MODULE_URL, + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].setBindingDebugInfo + }; + Identifiers.setBindingDebugInfoForChanges = { + name: 'setBindingDebugInfoForChanges', + moduleUrl: VIEW_UTILS_MODULE_URL, + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].setBindingDebugInfoForChanges + }; + Identifiers.AnimationTransition = { + name: 'AnimationTransition', + moduleUrl: assetUrl('core', 'animation/animation_transition'), + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["C" /* AnimationTransition */] + }; + // This is just the interface! + Identifiers.InlineArray = { name: 'InlineArray', moduleUrl: VIEW_UTILS_MODULE_URL, runtime: null }; + Identifiers.inlineArrays = [ + { name: 'InlineArray2', moduleUrl: VIEW_UTILS_MODULE_URL, runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].InlineArray2 }, + { name: 'InlineArray2', moduleUrl: VIEW_UTILS_MODULE_URL, runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].InlineArray2 }, + { name: 'InlineArray4', moduleUrl: VIEW_UTILS_MODULE_URL, runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].InlineArray4 }, + { name: 'InlineArray8', moduleUrl: VIEW_UTILS_MODULE_URL, runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].InlineArray8 }, + { name: 'InlineArray16', moduleUrl: VIEW_UTILS_MODULE_URL, runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].InlineArray16 }, + ]; + Identifiers.EMPTY_INLINE_ARRAY = { + name: 'EMPTY_INLINE_ARRAY', + moduleUrl: VIEW_UTILS_MODULE_URL, + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].EMPTY_INLINE_ARRAY + }; + Identifiers.InlineArrayDynamic = { + name: 'InlineArrayDynamic', + moduleUrl: VIEW_UTILS_MODULE_URL, + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].InlineArrayDynamic + }; + Identifiers.subscribeToRenderElement = { + name: 'subscribeToRenderElement', + moduleUrl: VIEW_UTILS_MODULE_URL, + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].subscribeToRenderElement + }; + Identifiers.createRenderComponentType = { + name: 'createRenderComponentType', + moduleUrl: VIEW_UTILS_MODULE_URL, + runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].createRenderComponentType + }; + Identifiers.noop = { name: 'noop', moduleUrl: VIEW_UTILS_MODULE_URL, runtime: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["c" /* view_utils */].noop }; + return Identifiers; +}()); +function assetUrl(pkg, path, type) { + if (path === void 0) { path = null; } + if (type === void 0) { type = 'src'; } + if (path == null) { + return "asset:@angular/lib/" + pkg + "/index"; + } + else { + return "asset:@angular/lib/" + pkg + "/src/" + path; + } +} +function resolveIdentifier(identifier) { + return new __WEBPACK_IMPORTED_MODULE_1__compile_metadata__["h" /* CompileIdentifierMetadata */]({ + name: identifier.name, + moduleUrl: identifier.moduleUrl, + reference: __WEBPACK_IMPORTED_MODULE_2__private_import_core__["D" /* reflector */].resolveIdentifier(identifier.name, identifier.moduleUrl, identifier.runtime) + }); +} +function identifierToken(identifier) { + return new __WEBPACK_IMPORTED_MODULE_1__compile_metadata__["i" /* CompileTokenMetadata */]({ identifier: identifier }); +} +function resolveIdentifierToken(identifier) { + return identifierToken(resolveIdentifier(identifier)); +} +function resolveEnumIdentifier(enumType, name) { + var resolvedEnum = __WEBPACK_IMPORTED_MODULE_2__private_import_core__["D" /* reflector */].resolveEnum(enumType.reference, name); + return new __WEBPACK_IMPORTED_MODULE_1__compile_metadata__["h" /* CompileIdentifierMetadata */]({ name: enumType.name + "." + name, moduleUrl: enumType.moduleUrl, reference: resolvedEnum }); +} +//# sourceMappingURL=identifiers.js.map + +/***/ }), +/* 18 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core__ = __webpack_require__(0); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return isDefaultChangeDetectionStrategy; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return ChangeDetectorStatus; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return LifecycleHooks; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return LIFECYCLE_HOOKS_VALUES; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return ReflectorReader; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return ViewContainer; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return CodegenComponentFactoryResolver; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return ComponentRef_; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return AppView; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return DebugAppView; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return NgModuleInjector; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return registerModuleFactory; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return ViewType; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return view_utils; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return DebugContext; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return StaticNodeDebugInfo; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return devModeEqual; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return UNINITIALIZED; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return ValueUnwrapper; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return TemplateRef_; }); +/* unused harmony export RenderDebugInfo */ +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return Console; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return reflector; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return Reflector; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return ReflectionCapabilities; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return NoOpAnimationPlayer; }); +/* unused harmony export AnimationPlayer */ +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return AnimationSequencePlayer; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return AnimationGroupPlayer; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return AnimationKeyframe; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return AnimationStyles; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return ANY_STATE; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return DEFAULT_STATE; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return EMPTY_STATE; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return FILL_STYLE_FLAG; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return prepareFinalAnimationStyles; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return balanceAnimationKeyframes; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return clearStyles; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return collectAndResolveStyles; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return renderStyles; }); +/* unused harmony export ViewMetadata */ +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return ComponentStillLoadingError; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return AnimationTransition; }); +/** + * @license + * Copyright Google Inc. All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */ + +var isDefaultChangeDetectionStrategy = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].isDefaultChangeDetectionStrategy; +var ChangeDetectorStatus = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].ChangeDetectorStatus; +var LifecycleHooks = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].LifecycleHooks; +var LIFECYCLE_HOOKS_VALUES = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].LIFECYCLE_HOOKS_VALUES; +var ReflectorReader = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].ReflectorReader; +var ViewContainer = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].ViewContainer; +var CodegenComponentFactoryResolver = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].CodegenComponentFactoryResolver; +var ComponentRef_ = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].ComponentRef_; +var AppView = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].AppView; +var DebugAppView = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].DebugAppView; +var NgModuleInjector = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].NgModuleInjector; +var registerModuleFactory = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].registerModuleFactory; +var ViewType = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].ViewType; +var view_utils = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].view_utils; +var DebugContext = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].DebugContext; +var StaticNodeDebugInfo = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].StaticNodeDebugInfo; +var devModeEqual = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].devModeEqual; +var UNINITIALIZED = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].UNINITIALIZED; +var ValueUnwrapper = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].ValueUnwrapper; +var TemplateRef_ = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].TemplateRef_; +var RenderDebugInfo = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].RenderDebugInfo; +var Console = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].Console; +var reflector = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].reflector; +var Reflector = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].Reflector; +var ReflectionCapabilities = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].ReflectionCapabilities; +var NoOpAnimationPlayer = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].NoOpAnimationPlayer; +var AnimationPlayer = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].AnimationPlayer; +var AnimationSequencePlayer = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].AnimationSequencePlayer; +var AnimationGroupPlayer = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].AnimationGroupPlayer; +var AnimationKeyframe = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].AnimationKeyframe; +var AnimationStyles = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].AnimationStyles; +var ANY_STATE = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].ANY_STATE; +var DEFAULT_STATE = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].DEFAULT_STATE; +var EMPTY_STATE = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].EMPTY_STATE; +var FILL_STYLE_FLAG = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].FILL_STYLE_FLAG; +var prepareFinalAnimationStyles = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].prepareFinalAnimationStyles; +var balanceAnimationKeyframes = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].balanceAnimationKeyframes; +var clearStyles = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].clearStyles; +var collectAndResolveStyles = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].collectAndResolveStyles; +var renderStyles = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].renderStyles; +var ViewMetadata = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].ViewMetadata; +var ComponentStillLoadingError = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].ComponentStillLoadingError; +var AnimationTransition = __WEBPACK_IMPORTED_MODULE_0__angular_core__["w" /* __core_private__ */].AnimationTransition; +//# sourceMappingURL=private_import_core.js.map + +/***/ }), +/* 19 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var isArray_1 = __webpack_require__(47); +var isObject_1 = __webpack_require__(921); +var isFunction_1 = __webpack_require__(237); +var tryCatch_1 = __webpack_require__(23); +var errorObject_1 = __webpack_require__(20); +var UnsubscriptionError_1 = __webpack_require__(513); +/** + * Represents a disposable resource, such as the execution of an Observable. A + * Subscription has one important method, `unsubscribe`, that takes no argument + * and just disposes the resource held by the subscription. + * + * Additionally, subscriptions may be grouped together through the `add()` + * method, which will attach a child Subscription to the current Subscription. + * When a Subscription is unsubscribed, all its children (and its grandchildren) + * will be unsubscribed as well. + * + * @class Subscription + */ +var Subscription = (function () { + /** + * @param {function(): void} [unsubscribe] A function describing how to + * perform the disposal of resources when the `unsubscribe` method is called. + */ + function Subscription(unsubscribe) { + /** + * A flag to indicate whether this Subscription has already been unsubscribed. + * @type {boolean} + */ + this.closed = false; + if (unsubscribe) { + this._unsubscribe = unsubscribe; + } + } + /** + * Disposes the resources held by the subscription. May, for instance, cancel + * an ongoing Observable execution or cancel any other type of work that + * started when the Subscription was created. + * @return {void} + */ + Subscription.prototype.unsubscribe = function () { + var hasErrors = false; + var errors; + if (this.closed) { + return; + } + this.closed = true; + var _a = this, _unsubscribe = _a._unsubscribe, _subscriptions = _a._subscriptions; + this._subscriptions = null; + if (isFunction_1.isFunction(_unsubscribe)) { + var trial = tryCatch_1.tryCatch(_unsubscribe).call(this); + if (trial === errorObject_1.errorObject) { + hasErrors = true; + (errors = errors || []).push(errorObject_1.errorObject.e); + } + } + if (isArray_1.isArray(_subscriptions)) { + var index = -1; + var len = _subscriptions.length; + while (++index < len) { + var sub = _subscriptions[index]; + if (isObject_1.isObject(sub)) { + var trial = tryCatch_1.tryCatch(sub.unsubscribe).call(sub); + if (trial === errorObject_1.errorObject) { + hasErrors = true; + errors = errors || []; + var err = errorObject_1.errorObject.e; + if (err instanceof UnsubscriptionError_1.UnsubscriptionError) { + errors = errors.concat(err.errors); + } + else { + errors.push(err); + } + } + } + } + } + if (hasErrors) { + throw new UnsubscriptionError_1.UnsubscriptionError(errors); + } + }; + /** + * Adds a tear down to be called during the unsubscribe() of this + * Subscription. + * + * If the tear down being added is a subscription that is already + * unsubscribed, is the same reference `add` is being called on, or is + * `Subscription.EMPTY`, it will not be added. + * + * If this subscription is already in an `closed` state, the passed + * tear down logic will be executed immediately. + * + * @param {TeardownLogic} teardown The additional logic to execute on + * teardown. + * @return {Subscription} Returns the Subscription used or created to be + * added to the inner subscriptions list. This Subscription can be used with + * `remove()` to remove the passed teardown logic from the inner subscriptions + * list. + */ + Subscription.prototype.add = function (teardown) { + if (!teardown || (teardown === Subscription.EMPTY)) { + return Subscription.EMPTY; + } + if (teardown === this) { + return this; + } + var sub = teardown; + switch (typeof teardown) { + case 'function': + sub = new Subscription(teardown); + case 'object': + if (sub.closed || typeof sub.unsubscribe !== 'function') { + break; + } + else if (this.closed) { + sub.unsubscribe(); + } + else { + (this._subscriptions || (this._subscriptions = [])).push(sub); + } + break; + default: + throw new Error('unrecognized teardown ' + teardown + ' added to Subscription.'); + } + return sub; + }; + /** + * Removes a Subscription from the internal list of subscriptions that will + * unsubscribe during the unsubscribe process of this Subscription. + * @param {Subscription} subscription The subscription to remove. + * @return {void} + */ + Subscription.prototype.remove = function (subscription) { + // HACK: This might be redundant because of the logic in `add()` + if (subscription == null || (subscription === this) || (subscription === Subscription.EMPTY)) { + return; + } + var subscriptions = this._subscriptions; + if (subscriptions) { + var subscriptionIndex = subscriptions.indexOf(subscription); + if (subscriptionIndex !== -1) { + subscriptions.splice(subscriptionIndex, 1); + } + } + }; + Subscription.EMPTY = (function (empty) { + empty.closed = true; + return empty; + }(new Subscription())); + return Subscription; +}()); +exports.Subscription = Subscription; +//# sourceMappingURL=Subscription.js.map + +/***/ }), +/* 20 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +// typeof any so that it we don't have to cast when comparing a result to the error object +exports.errorObject = { e: {} }; +//# sourceMappingURL=errorObject.js.map + +/***/ }), +/* 21 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony export (immutable) */ __webpack_exports__["b"] = getDOM; +/* unused harmony export setDOM */ +/* harmony export (immutable) */ __webpack_exports__["c"] = setRootDomAdapter; +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return DomAdapter; }); +/** + * @license + * Copyright Google Inc. All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */ +var _DOM = null; +function getDOM() { + return _DOM; +} +function setDOM(adapter) { + _DOM = adapter; +} +function setRootDomAdapter(adapter) { + if (!_DOM) { + _DOM = adapter; + } +} +/* tslint:disable:requireParameterType */ +/** + * Provides DOM operations in an environment-agnostic way. + * + * @security Tread carefully! Interacting with the DOM directly is dangerous and + * can introduce XSS risks. + */ +var DomAdapter = (function () { + function DomAdapter() { + this.resourceLoaderType = null; + } + Object.defineProperty(DomAdapter.prototype, "attrToPropMap", { + /** + * Maps attribute names to their corresponding property names for cases + * where attribute name doesn't match property name. + */ + get: function () { return this._attrToPropMap; }, + set: function (value) { this._attrToPropMap = value; }, + enumerable: true, + configurable: true + }); + ; + ; + return DomAdapter; +}()); +//# sourceMappingURL=dom_adapter.js.map + +/***/ }), +/* 22 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dom__ = __webpack_require__(7); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__util__ = __webpack_require__(3); +/* unused harmony export DomDebouncer */ +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return DomController; }); + + +var DomDebouncer = (function () { + function DomDebouncer(dom) { + this.dom = dom; + this.writeTask = null; + this.readTask = null; + } + DomDebouncer.prototype.read = function (fn) { + var _this = this; + if (this.readTask) { + return; + } + return this.readTask = this.dom.read(function (t) { + _this.readTask = null; + fn(t); + }); + }; + DomDebouncer.prototype.write = function (fn, ctx) { + var _this = this; + if (this.writeTask) { + return; + } + return this.writeTask = this.dom.write(function (t) { + _this.writeTask = null; + fn(t); + }); + }; + DomDebouncer.prototype.cancel = function () { + var writeTask = this.writeTask; + writeTask && this.dom.cancelW(writeTask); + this.writeTask = null; + var readTask = this.readTask; + readTask && this.dom.cancelR(readTask); + this.readTask = null; + }; + return DomDebouncer; +}()); +var DomController = (function () { + function DomController() { + this.r = []; + this.w = []; + } + DomController.prototype.debouncer = function () { + return new DomDebouncer(this); + }; + DomController.prototype.read = function (fn, ctx) { + var task = !ctx ? fn : fn.bind(ctx); + this.r.push(task); + this.queue(); + return task; + }; + DomController.prototype.write = function (fn, ctx) { + var task = !ctx ? fn : fn.bind(ctx); + this.w.push(task); + this.queue(); + return task; + }; + DomController.prototype.cancel = function (task) { + return __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util__["d" /* removeArrayItem */])(this.r, task) || __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util__["d" /* removeArrayItem */])(this.w, task); + }; + DomController.prototype.cancelW = function (task) { + return __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util__["d" /* removeArrayItem */])(this.w, task); + }; + DomController.prototype.cancelR = function (task) { + return __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util__["d" /* removeArrayItem */])(this.r, task); + }; + DomController.prototype.queue = function () { + var self = this; + if (!self.q) { + self.q = true; + __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__dom__["g" /* nativeRaf */])(function rafCallback(timeStamp) { + self.flush(timeStamp); + }); + } + }; + DomController.prototype.flush = function (timeStamp) { + var err; + try { + dispatch(timeStamp, this.r, this.w); + } + catch (e) { + err = e; + } + this.q = false; + if (this.r.length || this.w.length) { + this.queue(); + } + if (err) { + throw err; + } + }; + return DomController; +}()); +function dispatch(timeStamp, r, w) { + var task; + // ******** DOM READS **************** + while (task = r.shift()) { + task(timeStamp); + } + // ******** DOM WRITES **************** + while (task = w.shift()) { + task(timeStamp); + } +} +//# sourceMappingURL=dom-controller.js.map + +/***/ }), +/* 23 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var errorObject_1 = __webpack_require__(20); +var tryCatchTarget; +function tryCatcher() { + try { + return tryCatchTarget.apply(this, arguments); + } + catch (e) { + errorObject_1.errorObject.e = e; + return errorObject_1.errorObject; + } +} +function tryCatch(fn) { + tryCatchTarget = fn; + return tryCatcher; +} +exports.tryCatch = tryCatch; +; +//# sourceMappingURL=tryCatch.js.map + +/***/ }), +/* 24 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__util_dom__ = __webpack_require__(7); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__util_util__ = __webpack_require__(3); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return Animation; }); + + +/** + * @private + */ +var Animation = (function () { + function Animation(ele, opts, raf) { + this._dur = null; + this._es = null; + this._rvEs = null; + this.hasChildren = false; + this.isPlaying = false; + this.hasCompleted = false; + this.element(ele); + this.opts = opts; + this._raf = raf || __WEBPACK_IMPORTED_MODULE_0__util_dom__["g" /* nativeRaf */]; + } + Animation.prototype.element = function (ele) { + if (ele) { + if (typeof ele === 'string') { + ele = document.querySelectorAll(ele); + for (var i = 0; i < ele.length; i++) { + this._addEle(ele[i]); + } + } + else if (ele.length) { + for (var i = 0; i < ele.length; i++) { + this._addEle(ele[i]); + } + } + else { + this._addEle(ele); + } + } + return this; + }; + /** + * NO DOM + */ + Animation.prototype._addEle = function (ele) { + if (ele.nativeElement) { + ele = ele.nativeElement; + } + if (ele.nodeType === 1) { + this._eL = (this._e = this._e || []).push(ele); + } + }; + /** + * Add a child animation to this animation. + */ + Animation.prototype.add = function (childAnimation) { + childAnimation.parent = this; + this.hasChildren = true; + this._cL = (this._c = this._c || []).push(childAnimation); + return this; + }; + /** + * Get the duration of this animation. If this animation does + * not have a duration, then it'll get the duration from its parent. + */ + Animation.prototype.getDuration = function (opts) { + if (opts && __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util_util__["j" /* isDefined */])(opts.duration)) { + return opts.duration; + } + else if (this._dur !== null) { + return this._dur; + } + else if (this.parent) { + return this.parent.getDuration(); + } + return 0; + }; + /** + * Set the duration for this animation. + */ + Animation.prototype.duration = function (milliseconds) { + this._dur = milliseconds; + return this; + }; + /** + * Get the easing of this animation. If this animation does + * not have an easing, then it'll get the easing from its parent. + */ + Animation.prototype.getEasing = function () { + if (this._rv && this._rvEs) { + return this._rvEs; + } + return this._es !== null ? this._es : (this.parent && this.parent.getEasing()) || null; + }; + /** + * Set the easing for this animation. + */ + Animation.prototype.easing = function (name) { + this._es = name; + return this; + }; + /** + * Set the easing for this reversed animation. + */ + Animation.prototype.easingReverse = function (name) { + this._rvEs = name; + return this; + }; + /** + * Add the "from" value for a specific property. + */ + Animation.prototype.from = function (prop, val) { + this._addProp('from', prop, val); + return this; + }; + /** + * Add the "to" value for a specific property. + */ + Animation.prototype.to = function (prop, val, clearProperyAfterTransition) { + var fx = this._addProp('to', prop, val); + if (clearProperyAfterTransition) { + // if this effect is a transform then clear the transform effect + // otherwise just clear the actual property + this.afterClearStyles([fx.trans ? __WEBPACK_IMPORTED_MODULE_0__util_dom__["h" /* CSS */].transform : prop]); + } + return this; + }; + /** + * Shortcut to add both the "from" and "to" for the same property. + */ + Animation.prototype.fromTo = function (prop, fromVal, toVal, clearProperyAfterTransition) { + return this.from(prop, fromVal).to(prop, toVal, clearProperyAfterTransition); + }; + /** + * @private + * NO DOM + */ + Animation.prototype._getProp = function (name) { + if (this._fx) { + return this._fx.find(function (prop) { return prop.name === name; }); + } + else { + this._fx = []; + } + return null; + }; + Animation.prototype._addProp = function (state, prop, val) { + var fxProp = this._getProp(prop); + if (!fxProp) { + // first time we've see this EffectProperty + var shouldTrans = (TRANSFORMS[prop] === 1); + fxProp = { + name: prop, + trans: shouldTrans, + // add the will-change property for transforms or opacity + wc: (shouldTrans ? __WEBPACK_IMPORTED_MODULE_0__util_dom__["h" /* CSS */].transform : prop) + }; + this._fx.push(fxProp); + } + // add from/to EffectState to the EffectProperty + var fxState = { + val: val, + num: null, + unit: '', + }; + fxProp[state] = fxState; + if (typeof val === 'string' && val.indexOf(' ') < 0) { + var r = val.match(CSS_VALUE_REGEX); + var num = parseFloat(r[1]); + if (!isNaN(num)) { + fxState.num = num; + } + fxState.unit = (r[0] !== r[2] ? r[2] : ''); + } + else if (typeof val === 'number') { + fxState.num = val; + } + return fxProp; + }; + /** + * Add CSS class to this animation's elements + * before the animation begins. + */ + Animation.prototype.beforeAddClass = function (className) { + (this._bfAdd = this._bfAdd || []).push(className); + return this; + }; + /** + * Remove CSS class from this animation's elements + * before the animation begins. + */ + Animation.prototype.beforeRemoveClass = function (className) { + (this._bfRm = this._bfRm || []).push(className); + return this; + }; + /** + * Set CSS inline styles to this animation's elements + * before the animation begins. + */ + Animation.prototype.beforeStyles = function (styles) { + this._bfSty = styles; + return this; + }; + /** + * Clear CSS inline styles from this animation's elements + * before the animation begins. + */ + Animation.prototype.beforeClearStyles = function (propertyNames) { + this._bfSty = this._bfSty || {}; + for (var i = 0; i < propertyNames.length; i++) { + this._bfSty[propertyNames[i]] = ''; + } + return this; + }; + /** + * Add a function which contains DOM reads, which will run + * before the animation begins. + */ + Animation.prototype.beforeAddRead = function (domReadFn) { + (this._rdFn = this._rdFn || []).push(domReadFn); + return this; + }; + /** + * Add a function which contains DOM writes, which will run + * before the animation begins. + */ + Animation.prototype.beforeAddWrite = function (domWriteFn) { + (this._wrFn = this._wrFn || []).push(domWriteFn); + return this; + }; + /** + * Add CSS class to this animation's elements + * after the animation finishes. + */ + Animation.prototype.afterAddClass = function (className) { + (this._afAdd = this._afAdd || []).push(className); + return this; + }; + /** + * Remove CSS class from this animation's elements + * after the animation finishes. + */ + Animation.prototype.afterRemoveClass = function (className) { + (this._afRm = this._afRm || []).push(className); + return this; + }; + /** + * Set CSS inline styles to this animation's elements + * after the animation finishes. + */ + Animation.prototype.afterStyles = function (styles) { + this._afSty = styles; + return this; + }; + /** + * Clear CSS inline styles from this animation's elements + * after the animation finishes. + */ + Animation.prototype.afterClearStyles = function (propertyNames) { + this._afSty = this._afSty || {}; + for (var i = 0; i < propertyNames.length; i++) { + this._afSty[propertyNames[i]] = ''; + } + return this; + }; + /** + * Play the animation. + */ + Animation.prototype.play = function (opts) { + var _this = this; + // If the animation was already invalidated (it did finish), do nothing + if (!this._raf) { + return; + } + // this is the top level animation and is in full control + // of when the async play() should actually kick off + // if there is no duration then it'll set the TO property immediately + // if there is a duration, then it'll stage all animations at the + // FROM property and transition duration, wait a few frames, then + // kick off the animation by setting the TO property for each animation + this._isAsync = this._hasDuration(opts); + // ensure all past transition end events have been cleared + this._clearAsync(); + // recursively kicks off the correct progress step for each child animation + // ******** DOM WRITE **************** + this._playInit(opts); + // doubling up RAFs since this animation was probably triggered + // from an input event, and just having one RAF would have this code + // run within the same frame as the triggering input event, and the + // input event probably already did way too much work for one frame + this._raf(function () { + (void 0) /* assert */; + _this._raf(_this._playDomInspect.bind(_this, opts)); + }); + }; + /** + * @private + * DOM WRITE + * RECURSION + */ + Animation.prototype._playInit = function (opts) { + // always default that an animation does not tween + // a tween requires that an Animation class has an element + // and that it has at least one FROM/TO effect + // and that the FROM/TO effect can tween numeric values + this._twn = false; + this.isPlaying = true; + this.hasCompleted = false; + this._hasDur = (this.getDuration(opts) > ANIMATION_DURATION_MIN); + var children = this._c; + for (var i = 0; i < this._cL; i++) { + // ******** DOM WRITE **************** + children[i]._playInit(opts); + } + if (this._hasDur) { + // if there is a duration then we want to start at step 0 + // ******** DOM WRITE **************** + this._progress(0); + // add the will-change properties + // ******** DOM WRITE **************** + this._willChg(true); + } + }; + /** + * @private + * DOM WRITE + * NO RECURSION + * ROOT ANIMATION + */ + Animation.prototype._playDomInspect = function (opts) { + (void 0) /* assert */; + // fire off all the "before" function that have DOM READS in them + // elements will be in the DOM, however visibily hidden + // so we can read their dimensions if need be + // ******** DOM READ **************** + // ******** DOM WRITE **************** + this._beforeAnimation(); + // for the root animation only + // set the async TRANSITION END event + // and run onFinishes when the transition ends + var dur = this.getDuration(opts); + if (this._isAsync) { + this._asyncEnd(dur, true); + } + // ******** DOM WRITE **************** + this._playProgress(opts); + if (this._isAsync && this._raf) { + // this animation has a duration so we need another RAF + // for the CSS TRANSITION properties to kick in + this._raf(this._playToStep.bind(this, 1)); + } + }; + /** + * @private + * DOM WRITE + * RECURSION + */ + Animation.prototype._playProgress = function (opts) { + var children = this._c; + for (var i = 0; i < this._cL; i++) { + // ******** DOM WRITE **************** + children[i]._playProgress(opts); + } + if (this._hasDur) { + // set the CSS TRANSITION duration/easing + // ******** DOM WRITE **************** + this._setTrans(this.getDuration(opts), false); + } + else { + // this animation does not have a duration, so it should not animate + // just go straight to the TO properties and call it done + // ******** DOM WRITE **************** + this._progress(1); + // since there was no animation, immediately run the after + // ******** DOM WRITE **************** + this._setAfterStyles(); + // this animation has no duration, so it has finished + // other animations could still be running + this._didFinish(true); + } + }; + /** + * @private + * DOM WRITE + * RECURSION + */ + Animation.prototype._playToStep = function (stepValue) { + var children = this._c; + for (var i = 0; i < this._cL; i++) { + // ******** DOM WRITE **************** + children[i]._playToStep(stepValue); + } + if (this._hasDur) { + // browser had some time to render everything in place + // and the transition duration/easing is set + // now set the TO properties which will trigger the transition to begin + // ******** DOM WRITE **************** + this._progress(stepValue); + } + }; + /** + * @private + * DOM WRITE + * NO RECURSION + * ROOT ANIMATION + */ + Animation.prototype._asyncEnd = function (dur, shouldComplete) { + (void 0) /* assert */; + (void 0) /* assert */; + (void 0) /* assert */; + var self = this; + function onTransitionEnd(ev) { + // congrats! a successful transition completed! + // ensure transition end events and timeouts have been cleared + self._clearAsync(); + // ******** DOM WRITE **************** + self._playEnd(); + // transition finished + self._didFinishAll(shouldComplete, true, false); + } + function onTransitionFallback() { + (void 0) /* console.debug */; + // oh noz! the transition end event didn't fire in time! + // instead the fallback timer when first + // if all goes well this fallback should never fire + // clear the other async end events from firing + self._tm = undefined; + self._clearAsync(); + // set the after styles + // ******** DOM WRITE **************** + self._playEnd(shouldComplete ? 1 : 0); + // transition finished + self._didFinishAll(shouldComplete, true, false); + } + // set the TRANSITION END event on one of the transition elements + self._unrgTrns = __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__util_dom__["i" /* transitionEnd */])(self._transEl(), onTransitionEnd); + // set a fallback timeout if the transition end event never fires, or is too slow + // transition end fallback: (animation duration + XXms) + self._tm = __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__util_dom__["j" /* nativeTimeout */])(onTransitionFallback, (dur + TRANSITION_END_FALLBACK_PADDING_MS)); + }; + /** + * @private + * DOM WRITE + * RECURSION + */ + Animation.prototype._playEnd = function (stepValue) { + var children = this._c; + for (var i = 0; i < this._cL; i++) { + // ******** DOM WRITE **************** + children[i]._playEnd(stepValue); + } + if (this._hasDur) { + if (__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util_util__["j" /* isDefined */])(stepValue)) { + // too late to have a smooth animation, just finish it + // ******** DOM WRITE **************** + this._setTrans(0, true); + // ensure the ending progress step gets rendered + // ******** DOM WRITE **************** + this._progress(stepValue); + } + // set the after styles + // ******** DOM WRITE **************** + this._setAfterStyles(); + // remove the will-change properties + // ******** DOM WRITE **************** + this._willChg(false); + } + }; + /** + * @private + * NO DOM + * RECURSION + */ + Animation.prototype._hasDuration = function (opts) { + if (this.getDuration(opts) > ANIMATION_DURATION_MIN) { + return true; + } + var children = this._c; + for (var i = 0; i < this._cL; i++) { + if (children[i]._hasDuration(opts)) { + return true; + } + } + return false; + }; + /** + * @private + * NO DOM + * RECURSION + */ + Animation.prototype._hasDomReads = function () { + if (this._rdFn && this._rdFn.length) { + return true; + } + var children = this._c; + for (var i = 0; i < this._cL; i++) { + if (children[i]._hasDomReads()) { + return true; + } + } + return false; + }; + /** + * Immediately stop at the end of the animation. + */ + Animation.prototype.stop = function (stepValue) { + if (stepValue === void 0) { stepValue = 1; } + // ensure all past transition end events have been cleared + this._clearAsync(); + this._hasDur = true; + this._playEnd(stepValue); + }; + /** + * @private + * NO DOM + * NO RECURSION + */ + Animation.prototype._clearAsync = function () { + this._unrgTrns && this._unrgTrns(); + this._tm && clearTimeout(this._tm); + this._tm = this._unrgTrns = undefined; + }; + /** + * @private + * DOM WRITE + * NO RECURSION + */ + Animation.prototype._progress = function (stepValue) { + // bread 'n butter + var val; + var effects = this._fx; + var nuElements = this._eL; + if (!effects || !nuElements) { + return; + } + // flip the number if we're going in reverse + if (this._rv) { + stepValue = ((stepValue * -1) + 1); + } + var i, j; + var finalTransform = ''; + var elements = this._e; + for (i = 0; i < effects.length; i++) { + var fx = effects[i]; + if (fx.from && fx.to) { + var fromNum = fx.from.num; + var toNum = fx.to.num; + var tweenEffect = (fromNum !== toNum); + (void 0) /* assert */; + if (tweenEffect) { + this._twn = true; + } + if (stepValue === 0) { + // FROM + val = fx.from.val; + } + else if (stepValue === 1) { + // TO + val = fx.to.val; + } + else if (tweenEffect) { + // EVERYTHING IN BETWEEN + var valNum = (((toNum - fromNum) * stepValue) + fromNum); + var unit = fx.to.unit; + if (unit === 'px') { + valNum = Math.round(valNum); + } + val = valNum + unit; + } + if (val !== null) { + var prop = fx.name; + if (fx.trans) { + finalTransform += prop + '(' + val + ') '; + } + else { + for (j = 0; j < nuElements; j++) { + // ******** DOM WRITE **************** + elements[j].style[prop] = val; + } + } + } + } + } + // place all transforms on the same property + if (finalTransform.length) { + if (!this._rv && stepValue !== 1 || this._rv && stepValue !== 0) { + finalTransform += 'translateZ(0px)'; + } + var cssTransform = __WEBPACK_IMPORTED_MODULE_0__util_dom__["h" /* CSS */].transform; + for (i = 0; i < elements.length; i++) { + // ******** DOM WRITE **************** + elements[i].style[cssTransform] = finalTransform; + } + } + }; + /** + * @private + * DOM WRITE + * NO RECURSION + */ + Animation.prototype._setTrans = function (dur, forcedLinearEasing) { + // Transition is not enabled if there are not effects + if (!this._fx) { + return; + } + // set the TRANSITION properties inline on the element + var elements = this._e; + var easing = (forcedLinearEasing ? 'linear' : this.getEasing()); + var durString = dur + 'ms'; + var cssTransform = __WEBPACK_IMPORTED_MODULE_0__util_dom__["h" /* CSS */].transition; + var cssTransitionDuration = __WEBPACK_IMPORTED_MODULE_0__util_dom__["h" /* CSS */].transitionDuration; + var cssTransitionTimingFn = __WEBPACK_IMPORTED_MODULE_0__util_dom__["h" /* CSS */].transitionTimingFn; + var eleStyle; + for (var i = 0; i < this._eL; i++) { + eleStyle = elements[i].style; + if (dur > 0) { + // ******** DOM WRITE **************** + eleStyle[cssTransform] = ''; + eleStyle[cssTransitionDuration] = durString; + // each animation can have a different easing + if (easing) { + // ******** DOM WRITE **************** + eleStyle[cssTransitionTimingFn] = easing; + } + } + else { + eleStyle[cssTransform] = 'none'; + } + } + }; + /** + * @private + * DOM READ + * DOM WRITE + * RECURSION + */ + Animation.prototype._beforeAnimation = function () { + // fire off all the "before" function that have DOM READS in them + // elements will be in the DOM, however visibily hidden + // so we can read their dimensions if need be + // ******** DOM READ **************** + this._fireBeforeReadFunc(); + // ******** DOM READS ABOVE / DOM WRITES BELOW **************** + // fire off all the "before" function that have DOM WRITES in them + // ******** DOM WRITE **************** + this._fireBeforeWriteFunc(); + // stage all of the before css classes and inline styles + // ******** DOM WRITE **************** + this._setBeforeStyles(); + }; + /** + * @private + * DOM WRITE + * RECURSION + */ + Animation.prototype._setBeforeStyles = function () { + var i, j; + var children = this._c; + for (i = 0; i < this._cL; i++) { + children[i]._setBeforeStyles(); + } + // before the animations have started + // only set before styles if animation is not reversed + if (this._rv) { + return; + } + var addClasses = this._bfAdd; + var removeClasses = this._bfRm; + var ele; + var eleClassList; + var prop; + for (i = 0; i < this._eL; i++) { + ele = this._e[i]; + eleClassList = ele.classList; + // css classes to add before the animation + if (addClasses) { + for (j = 0; j < addClasses.length; j++) { + // ******** DOM WRITE **************** + eleClassList.add(addClasses[j]); + } + } + // css classes to remove before the animation + if (removeClasses) { + for (j = 0; j < removeClasses.length; j++) { + // ******** DOM WRITE **************** + eleClassList.remove(removeClasses[j]); + } + } + // inline styles to add before the animation + if (this._bfSty) { + for (prop in this._bfSty) { + // ******** DOM WRITE **************** + ele.style[prop] = this._bfSty[prop]; + } + } + } + }; + /** + * @private + * DOM READ + * RECURSION + */ + Animation.prototype._fireBeforeReadFunc = function () { + var children = this._c; + for (var i = 0; i < this._cL; i++) { + // ******** DOM READ **************** + children[i]._fireBeforeReadFunc(); + } + var readFunctions = this._rdFn; + if (readFunctions) { + for (var i = 0; i < readFunctions.length; i++) { + // ******** DOM READ **************** + readFunctions[i](); + } + } + }; + /** + * @private + * DOM WRITE + * RECURSION + */ + Animation.prototype._fireBeforeWriteFunc = function () { + var children = this._c; + for (var i = 0; i < this._cL; i++) { + // ******** DOM WRITE **************** + children[i]._fireBeforeWriteFunc(); + } + var writeFunctions = this._wrFn; + if (this._wrFn) { + for (var i = 0; i < writeFunctions.length; i++) { + // ******** DOM WRITE **************** + writeFunctions[i](); + } + } + }; + /** + * @private + * DOM WRITE + */ + Animation.prototype._setAfterStyles = function () { + var i, j; + var ele; + var eleClassList; + var elements = this._e; + for (i = 0; i < this._eL; i++) { + ele = elements[i]; + eleClassList = ele.classList; + // remove the transition duration/easing + // ******** DOM WRITE **************** + ele.style[__WEBPACK_IMPORTED_MODULE_0__util_dom__["h" /* CSS */].transitionDuration] = ele.style[__WEBPACK_IMPORTED_MODULE_0__util_dom__["h" /* CSS */].transitionTimingFn] = ''; + if (this._rv) { + // finished in reverse direction + // css classes that were added before the animation should be removed + if (this._bfAdd) { + for (j = 0; j < this._bfAdd.length; j++) { + // ******** DOM WRITE **************** + eleClassList.remove(this._bfAdd[j]); + } + } + // css classes that were removed before the animation should be added + if (this._bfRm) { + for (j = 0; j < this._bfRm.length; j++) { + // ******** DOM WRITE **************** + eleClassList.add(this._bfRm[j]); + } + } + // inline styles that were added before the animation should be removed + if (this._bfSty) { + for (var prop in this._bfSty) { + // ******** DOM WRITE **************** + ele.style[prop] = ''; + } + } + } + else { + // finished in forward direction + // css classes to add after the animation + if (this._afAdd) { + for (j = 0; j < this._afAdd.length; j++) { + // ******** DOM WRITE **************** + eleClassList.add(this._afAdd[j]); + } + } + // css classes to remove after the animation + if (this._afRm) { + for (j = 0; j < this._afRm.length; j++) { + // ******** DOM WRITE **************** + eleClassList.remove(this._afRm[j]); + } + } + // inline styles to add after the animation + if (this._afSty) { + for (var prop in this._afSty) { + // ******** DOM WRITE **************** + ele.style[prop] = this._afSty[prop]; + } + } + } + } + }; + /** + * @private + * DOM WRITE + * NO RECURSION + */ + Animation.prototype._willChg = function (addWillChange) { + var wc; + var effects = this._fx; + var willChange; + if (addWillChange && effects) { + wc = []; + for (var i = 0; i < effects.length; i++) { + var propWC = effects[i].wc; + if (propWC === 'webkitTransform') { + wc.push('transform', '-webkit-transform'); + } + else { + wc.push(propWC); + } + } + willChange = wc.join(','); + } + else { + willChange = ''; + } + for (var i = 0; i < this._eL; i++) { + // ******** DOM WRITE **************** + this._e[i].style.willChange = willChange; + } + }; + /** + * Start the animation with a user controlled progress. + */ + Animation.prototype.progressStart = function () { + // ensure all past transition end events have been cleared + this._clearAsync(); + // ******** DOM READ/WRITE **************** + this._beforeAnimation(); + // ******** DOM WRITE **************** + this._progressStart(); + }; + /** + * @private + * DOM WRITE + * RECURSION + */ + Animation.prototype._progressStart = function () { + var children = this._c; + for (var i = 0; i < this._cL; i++) { + // ******** DOM WRITE **************** + children[i]._progressStart(); + } + // force no duration, linear easing + // ******** DOM WRITE **************** + this._setTrans(0, true); + // ******** DOM WRITE **************** + this._willChg(true); + }; + /** + * Set the progress step for this animation. + * progressStep() is not debounced, so it should not be called faster than 60FPS. + */ + Animation.prototype.progressStep = function (stepValue) { + // only update if the last update was more than 16ms ago + stepValue = Math.min(1, Math.max(0, stepValue)); + var children = this._c; + for (var i = 0; i < this._cL; i++) { + // ******** DOM WRITE **************** + children[i].progressStep(stepValue); + } + if (this._rv) { + // if the animation is going in reverse then + // flip the step value: 0 becomes 1, 1 becomes 0 + stepValue = ((stepValue * -1) + 1); + } + // ******** DOM WRITE **************** + this._progress(stepValue); + }; + /** + * End the progress animation. + */ + Animation.prototype.progressEnd = function (shouldComplete, currentStepValue, dur) { + if (dur === void 0) { dur = -1; } + (void 0) /* console.debug */; + if (this._rv) { + // if the animation is going in reverse then + // flip the step value: 0 becomes 1, 1 becomes 0 + currentStepValue = ((currentStepValue * -1) + 1); + } + var stepValue = shouldComplete ? 1 : 0; + var diff = Math.abs(currentStepValue - stepValue); + if (diff < 0.05) { + dur = 0; + } + else if (dur < 0) { + dur = this._dur; + } + this._isAsync = (dur > 30); + this._progressEnd(shouldComplete, stepValue, dur, this._isAsync); + if (this._isAsync) { + // for the root animation only + // set the async TRANSITION END event + // and run onFinishes when the transition ends + // ******** DOM WRITE **************** + this._asyncEnd(dur, shouldComplete); + // this animation has a duration so we need another RAF + // for the CSS TRANSITION properties to kick in + this._raf && this._raf(this._playToStep.bind(this, stepValue)); + } + }; + /** + * @private + * DOM WRITE + * RECURSION + */ + Animation.prototype._progressEnd = function (shouldComplete, stepValue, dur, isAsync) { + var children = this._c; + for (var i = 0; i < this._cL; i++) { + // ******** DOM WRITE **************** + children[i]._progressEnd(shouldComplete, stepValue, dur, isAsync); + } + if (!isAsync) { + // stop immediately + // set all the animations to their final position + // ******** DOM WRITE **************** + this._progress(stepValue); + this._willChg(false); + this._setAfterStyles(); + this._didFinish(shouldComplete); + } + else { + // animate it back to it's ending position + this.isPlaying = true; + this.hasCompleted = false; + this._hasDur = true; + // ******** DOM WRITE **************** + this._willChg(true); + this._setTrans(dur, false); + } + }; + /** + * Add a callback to fire when the animation has finished. + */ + Animation.prototype.onFinish = function (callback, onceTimeCallback, clearOnFinishCallacks) { + if (onceTimeCallback === void 0) { onceTimeCallback = false; } + if (clearOnFinishCallacks === void 0) { clearOnFinishCallacks = false; } + if (clearOnFinishCallacks) { + this._fFn = this._fOneFn = undefined; + } + if (onceTimeCallback) { + this._fOneFn = this._fOneFn || []; + this._fOneFn.push(callback); + } + else { + this._fFn = this._fFn || []; + this._fFn.push(callback); + } + return this; + }; + /** + * @private + * NO DOM + * RECURSION + */ + Animation.prototype._didFinishAll = function (hasCompleted, finishAsyncAnimations, finishNoDurationAnimations) { + var children = this._c; + for (var i = 0; i < this._cL; i++) { + children[i]._didFinishAll(hasCompleted, finishAsyncAnimations, finishNoDurationAnimations); + } + if (finishAsyncAnimations && this._isAsync || finishNoDurationAnimations && !this._isAsync) { + this._didFinish(hasCompleted); + } + }; + /** + * @private + * NO RECURSION + */ + Animation.prototype._didFinish = function (hasCompleted) { + this.isPlaying = false; + this.hasCompleted = hasCompleted; + if (this._fFn) { + // run all finish callbacks + for (var i = 0; i < this._fFn.length; i++) { + this._fFn[i](this); + } + } + if (this._fOneFn) { + // run all "onetime" finish callbacks + for (var i = 0; i < this._fOneFn.length; i++) { + this._fOneFn[i](this); + } + this._fOneFn.length = 0; + } + }; + /** + * Reverse the animation. + */ + Animation.prototype.reverse = function (shouldReverse) { + if (shouldReverse === void 0) { shouldReverse = true; } + var children = this._c; + for (var i = 0; i < this._cL; i++) { + children[i].reverse(shouldReverse); + } + this._rv = shouldReverse; + return this; + }; + /** + * Recursively destroy this animation and all child animations. + */ + Animation.prototype.destroy = function () { + var children = this._c; + for (var i = 0; i < this._cL; i++) { + children[i].destroy(); + } + this._clearAsync(); + this.parent = this._e = this._rdFn = this._wrFn = this._raf = null; + if (this._c) { + this._c.length = this._cL = 0; + } + if (this._fFn) { + this._fFn.length = 0; + } + if (this._fOneFn) { + this._fOneFn.length = 0; + } + }; + /** + * @private + * NO DOM + */ + Animation.prototype._transEl = function () { + // get the lowest level element that has an Animation + var targetEl; + for (var i = 0; i < this._cL; i++) { + targetEl = this._c[i]._transEl(); + if (targetEl) { + return targetEl; + } + } + return (this._twn && this._hasDur && this._eL ? this._e[0] : null); + }; + return Animation; +}()); +var TRANSFORMS = { + 'translateX': 1, + 'translateY': 1, + 'translateZ': 1, + 'scale': 1, + 'scaleX': 1, + 'scaleY': 1, + 'scaleZ': 1, + 'rotate': 1, + 'rotateX': 1, + 'rotateY': 1, + 'rotateZ': 1, + 'skewX': 1, + 'skewY': 1, + 'perspective': 1 +}; +var CSS_VALUE_REGEX = /(^-?\d*\.?\d*)(.*)/; +var ANIMATION_DURATION_MIN = 32; +var TRANSITION_END_FALLBACK_PADDING_MS = 400; +//# sourceMappingURL=animation.js.map + +/***/ }), +/* 25 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; +/* WEBPACK VAR INJECTION */(function(global) { +var objectTypes = { + 'boolean': false, + 'function': true, + 'object': true, + 'number': false, + 'string': false, + 'undefined': false +}; +exports.root = (objectTypes[typeof self] && self) || (objectTypes[typeof window] && window); +var freeGlobal = objectTypes[typeof global] && global; +if (freeGlobal && (freeGlobal.global === freeGlobal || freeGlobal.window === freeGlobal)) { + exports.root = freeGlobal; +} +//# sourceMappingURL=root.js.map +/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(57))) + +/***/ }), +/* 26 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core__ = __webpack_require__(0); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__facade_collection__ = __webpack_require__(70); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__facade_lang__ = __webpack_require__(6); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__selector__ = __webpack_require__(106); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__util__ = __webpack_require__(49); +/* unused harmony export CompileMetadataWithIdentifier */ +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return CompileAnimationEntryMetadata; }); +/* unused harmony export CompileAnimationStateMetadata */ +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return CompileAnimationStateDeclarationMetadata; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return CompileAnimationStateTransitionMetadata; }); +/* unused harmony export CompileAnimationMetadata */ +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return CompileAnimationKeyframesSequenceMetadata; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return CompileAnimationStyleMetadata; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return CompileAnimationAnimateMetadata; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return CompileAnimationWithStepsMetadata; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return CompileAnimationSequenceMetadata; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return CompileAnimationGroupMetadata; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return CompileIdentifierMetadata; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return CompileDiDependencyMetadata; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return CompileProviderMetadata; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return CompileFactoryMetadata; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return CompileTokenMetadata; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return CompileTypeMetadata; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return CompileQueryMetadata; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return CompileStylesheetMetadata; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return CompileTemplateMetadata; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return CompileDirectiveMetadata; }); +/* harmony export (immutable) */ __webpack_exports__["y"] = createHostComponentMeta; +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return CompilePipeMetadata; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return CompileNgModuleMetadata; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return TransitiveCompileNgModuleMetadata; }); +/* unused harmony export removeIdentifierDuplicates */ +/* harmony export (immutable) */ __webpack_exports__["x"] = isStaticSymbol; +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return ProviderMeta; }); +/** + * @license + * Copyright Google Inc. All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */ +var __extends = (this && this.__extends) || function (d, b) { + for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); +}; + + + + + +function unimplemented() { + throw new Error('unimplemented'); +} +// group 0: "[prop] or (event) or @trigger" +// group 1: "prop" from "[prop]" +// group 2: "event" from "(event)" +// group 3: "@trigger" from "@trigger" +var HOST_REG_EXP = /^(?:(?:\[([^\]]+)\])|(?:\(([^\)]+)\)))|(\@[-\w]+)$/; +var CompileMetadataWithIdentifier = (function () { + function CompileMetadataWithIdentifier() { + } + Object.defineProperty(CompileMetadataWithIdentifier.prototype, "identifier", { + get: function () { return unimplemented(); }, + enumerable: true, + configurable: true + }); + return CompileMetadataWithIdentifier; +}()); +var CompileAnimationEntryMetadata = (function () { + function CompileAnimationEntryMetadata(name, definitions) { + if (name === void 0) { name = null; } + if (definitions === void 0) { definitions = null; } + this.name = name; + this.definitions = definitions; + } + return CompileAnimationEntryMetadata; +}()); +var CompileAnimationStateMetadata = (function () { + function CompileAnimationStateMetadata() { + } + return CompileAnimationStateMetadata; +}()); +var CompileAnimationStateDeclarationMetadata = (function (_super) { + __extends(CompileAnimationStateDeclarationMetadata, _super); + function CompileAnimationStateDeclarationMetadata(stateNameExpr, styles) { + _super.call(this); + this.stateNameExpr = stateNameExpr; + this.styles = styles; + } + return CompileAnimationStateDeclarationMetadata; +}(CompileAnimationStateMetadata)); +var CompileAnimationStateTransitionMetadata = (function (_super) { + __extends(CompileAnimationStateTransitionMetadata, _super); + function CompileAnimationStateTransitionMetadata(stateChangeExpr, steps) { + _super.call(this); + this.stateChangeExpr = stateChangeExpr; + this.steps = steps; + } + return CompileAnimationStateTransitionMetadata; +}(CompileAnimationStateMetadata)); +var CompileAnimationMetadata = (function () { + function CompileAnimationMetadata() { + } + return CompileAnimationMetadata; +}()); +var CompileAnimationKeyframesSequenceMetadata = (function (_super) { + __extends(CompileAnimationKeyframesSequenceMetadata, _super); + function CompileAnimationKeyframesSequenceMetadata(steps) { + if (steps === void 0) { steps = []; } + _super.call(this); + this.steps = steps; + } + return CompileAnimationKeyframesSequenceMetadata; +}(CompileAnimationMetadata)); +var CompileAnimationStyleMetadata = (function (_super) { + __extends(CompileAnimationStyleMetadata, _super); + function CompileAnimationStyleMetadata(offset, styles) { + if (styles === void 0) { styles = null; } + _super.call(this); + this.offset = offset; + this.styles = styles; + } + return CompileAnimationStyleMetadata; +}(CompileAnimationMetadata)); +var CompileAnimationAnimateMetadata = (function (_super) { + __extends(CompileAnimationAnimateMetadata, _super); + function CompileAnimationAnimateMetadata(timings, styles) { + if (timings === void 0) { timings = 0; } + if (styles === void 0) { styles = null; } + _super.call(this); + this.timings = timings; + this.styles = styles; + } + return CompileAnimationAnimateMetadata; +}(CompileAnimationMetadata)); +var CompileAnimationWithStepsMetadata = (function (_super) { + __extends(CompileAnimationWithStepsMetadata, _super); + function CompileAnimationWithStepsMetadata(steps) { + if (steps === void 0) { steps = null; } + _super.call(this); + this.steps = steps; + } + return CompileAnimationWithStepsMetadata; +}(CompileAnimationMetadata)); +var CompileAnimationSequenceMetadata = (function (_super) { + __extends(CompileAnimationSequenceMetadata, _super); + function CompileAnimationSequenceMetadata(steps) { + if (steps === void 0) { steps = null; } + _super.call(this, steps); + } + return CompileAnimationSequenceMetadata; +}(CompileAnimationWithStepsMetadata)); +var CompileAnimationGroupMetadata = (function (_super) { + __extends(CompileAnimationGroupMetadata, _super); + function CompileAnimationGroupMetadata(steps) { + if (steps === void 0) { steps = null; } + _super.call(this, steps); + } + return CompileAnimationGroupMetadata; +}(CompileAnimationWithStepsMetadata)); +var CompileIdentifierMetadata = (function () { + function CompileIdentifierMetadata(_a) { + var _b = _a === void 0 ? {} : _a, reference = _b.reference, name = _b.name, moduleUrl = _b.moduleUrl, prefix = _b.prefix, value = _b.value; + this.reference = reference; + this.name = name; + this.prefix = prefix; + this.moduleUrl = moduleUrl; + this.value = value; + } + Object.defineProperty(CompileIdentifierMetadata.prototype, "identifier", { + get: function () { return this; }, + enumerable: true, + configurable: true + }); + return CompileIdentifierMetadata; +}()); +var CompileDiDependencyMetadata = (function () { + function CompileDiDependencyMetadata(_a) { + var _b = _a === void 0 ? {} : _a, isAttribute = _b.isAttribute, isSelf = _b.isSelf, isHost = _b.isHost, isSkipSelf = _b.isSkipSelf, isOptional = _b.isOptional, isValue = _b.isValue, token = _b.token, value = _b.value; + this.isAttribute = !!isAttribute; + this.isSelf = !!isSelf; + this.isHost = !!isHost; + this.isSkipSelf = !!isSkipSelf; + this.isOptional = !!isOptional; + this.isValue = !!isValue; + this.token = token; + this.value = value; + } + return CompileDiDependencyMetadata; +}()); +var CompileProviderMetadata = (function () { + function CompileProviderMetadata(_a) { + var token = _a.token, useClass = _a.useClass, useValue = _a.useValue, useExisting = _a.useExisting, useFactory = _a.useFactory, deps = _a.deps, multi = _a.multi; + this.token = token; + this.useClass = useClass; + this.useValue = useValue; + this.useExisting = useExisting; + this.useFactory = useFactory; + this.deps = deps || null; + this.multi = !!multi; + } + return CompileProviderMetadata; +}()); +var CompileFactoryMetadata = (function (_super) { + __extends(CompileFactoryMetadata, _super); + function CompileFactoryMetadata(_a) { + var reference = _a.reference, name = _a.name, moduleUrl = _a.moduleUrl, prefix = _a.prefix, diDeps = _a.diDeps, value = _a.value; + _super.call(this, { reference: reference, name: name, prefix: prefix, moduleUrl: moduleUrl, value: value }); + this.diDeps = _normalizeArray(diDeps); + } + return CompileFactoryMetadata; +}(CompileIdentifierMetadata)); +var CompileTokenMetadata = (function () { + function CompileTokenMetadata(_a) { + var value = _a.value, identifier = _a.identifier, identifierIsInstance = _a.identifierIsInstance; + this.value = value; + this.identifier = identifier; + this.identifierIsInstance = !!identifierIsInstance; + } + Object.defineProperty(CompileTokenMetadata.prototype, "reference", { + get: function () { + if (__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_2__facade_lang__["a" /* isPresent */])(this.identifier)) { + return this.identifier.reference; + } + else { + return this.value; + } + }, + enumerable: true, + configurable: true + }); + Object.defineProperty(CompileTokenMetadata.prototype, "name", { + get: function () { + return __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_2__facade_lang__["a" /* isPresent */])(this.value) ? __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_4__util__["a" /* sanitizeIdentifier */])(this.value) : this.identifier.name; + }, + enumerable: true, + configurable: true + }); + return CompileTokenMetadata; +}()); +/** + * Metadata regarding compilation of a type. + */ +var CompileTypeMetadata = (function (_super) { + __extends(CompileTypeMetadata, _super); + function CompileTypeMetadata(_a) { + var _b = _a === void 0 ? {} : _a, reference = _b.reference, name = _b.name, moduleUrl = _b.moduleUrl, prefix = _b.prefix, isHost = _b.isHost, value = _b.value, diDeps = _b.diDeps, lifecycleHooks = _b.lifecycleHooks; + _super.call(this, { reference: reference, name: name, moduleUrl: moduleUrl, prefix: prefix, value: value }); + this.isHost = !!isHost; + this.diDeps = _normalizeArray(diDeps); + this.lifecycleHooks = _normalizeArray(lifecycleHooks); + } + return CompileTypeMetadata; +}(CompileIdentifierMetadata)); +var CompileQueryMetadata = (function () { + function CompileQueryMetadata(_a) { + var _b = _a === void 0 ? {} : _a, selectors = _b.selectors, descendants = _b.descendants, first = _b.first, propertyName = _b.propertyName, read = _b.read; + this.selectors = selectors; + this.descendants = !!descendants; + this.first = !!first; + this.propertyName = propertyName; + this.read = read; + } + return CompileQueryMetadata; +}()); +/** + * Metadata about a stylesheet + */ +var CompileStylesheetMetadata = (function () { + function CompileStylesheetMetadata(_a) { + var _b = _a === void 0 ? {} : _a, moduleUrl = _b.moduleUrl, styles = _b.styles, styleUrls = _b.styleUrls; + this.moduleUrl = moduleUrl; + this.styles = _normalizeArray(styles); + this.styleUrls = _normalizeArray(styleUrls); + } + return CompileStylesheetMetadata; +}()); +/** + * Metadata regarding compilation of a template. + */ +var CompileTemplateMetadata = (function () { + function CompileTemplateMetadata(_a) { + var _b = _a === void 0 ? {} : _a, encapsulation = _b.encapsulation, template = _b.template, templateUrl = _b.templateUrl, styles = _b.styles, styleUrls = _b.styleUrls, externalStylesheets = _b.externalStylesheets, animations = _b.animations, ngContentSelectors = _b.ngContentSelectors, interpolation = _b.interpolation; + this.encapsulation = encapsulation; + this.template = template; + this.templateUrl = templateUrl; + this.styles = _normalizeArray(styles); + this.styleUrls = _normalizeArray(styleUrls); + this.externalStylesheets = _normalizeArray(externalStylesheets); + this.animations = animations ? __WEBPACK_IMPORTED_MODULE_1__facade_collection__["b" /* ListWrapper */].flatten(animations) : []; + this.ngContentSelectors = ngContentSelectors || []; + if (interpolation && interpolation.length != 2) { + throw new Error("'interpolation' should have a start and an end symbol."); + } + this.interpolation = interpolation; + } + CompileTemplateMetadata.prototype.toSummary = function () { + return { + isSummary: true, + animations: this.animations.map(function (anim) { return anim.name; }), + ngContentSelectors: this.ngContentSelectors, + encapsulation: this.encapsulation + }; + }; + return CompileTemplateMetadata; +}()); +/** + * Metadata regarding compilation of a directive. + */ +var CompileDirectiveMetadata = (function () { + function CompileDirectiveMetadata(_a) { + var _b = _a === void 0 ? {} : _a, type = _b.type, isComponent = _b.isComponent, selector = _b.selector, exportAs = _b.exportAs, changeDetection = _b.changeDetection, inputs = _b.inputs, outputs = _b.outputs, hostListeners = _b.hostListeners, hostProperties = _b.hostProperties, hostAttributes = _b.hostAttributes, providers = _b.providers, viewProviders = _b.viewProviders, queries = _b.queries, viewQueries = _b.viewQueries, entryComponents = _b.entryComponents, template = _b.template; + this.type = type; + this.isComponent = isComponent; + this.selector = selector; + this.exportAs = exportAs; + this.changeDetection = changeDetection; + this.inputs = inputs; + this.outputs = outputs; + this.hostListeners = hostListeners; + this.hostProperties = hostProperties; + this.hostAttributes = hostAttributes; + this.providers = _normalizeArray(providers); + this.viewProviders = _normalizeArray(viewProviders); + this.queries = _normalizeArray(queries); + this.viewQueries = _normalizeArray(viewQueries); + this.entryComponents = _normalizeArray(entryComponents); + this.template = template; + } + CompileDirectiveMetadata.create = function (_a) { + var _b = _a === void 0 ? {} : _a, type = _b.type, isComponent = _b.isComponent, selector = _b.selector, exportAs = _b.exportAs, changeDetection = _b.changeDetection, inputs = _b.inputs, outputs = _b.outputs, host = _b.host, providers = _b.providers, viewProviders = _b.viewProviders, queries = _b.queries, viewQueries = _b.viewQueries, entryComponents = _b.entryComponents, template = _b.template; + var hostListeners = {}; + var hostProperties = {}; + var hostAttributes = {}; + if (__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_2__facade_lang__["a" /* isPresent */])(host)) { + Object.keys(host).forEach(function (key) { + var value = host[key]; + var matches = key.match(HOST_REG_EXP); + if (matches === null) { + hostAttributes[key] = value; + } + else if (__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_2__facade_lang__["a" /* isPresent */])(matches[1])) { + hostProperties[matches[1]] = value; + } + else if (__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_2__facade_lang__["a" /* isPresent */])(matches[2])) { + hostListeners[matches[2]] = value; + } + }); + } + var inputsMap = {}; + if (__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_2__facade_lang__["a" /* isPresent */])(inputs)) { + inputs.forEach(function (bindConfig) { + // canonical syntax: `dirProp: elProp` + // if there is no `:`, use dirProp = elProp + var parts = __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_4__util__["b" /* splitAtColon */])(bindConfig, [bindConfig, bindConfig]); + inputsMap[parts[0]] = parts[1]; + }); + } + var outputsMap = {}; + if (__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_2__facade_lang__["a" /* isPresent */])(outputs)) { + outputs.forEach(function (bindConfig) { + // canonical syntax: `dirProp: elProp` + // if there is no `:`, use dirProp = elProp + var parts = __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_4__util__["b" /* splitAtColon */])(bindConfig, [bindConfig, bindConfig]); + outputsMap[parts[0]] = parts[1]; + }); + } + return new CompileDirectiveMetadata({ + type: type, + isComponent: !!isComponent, selector: selector, exportAs: exportAs, changeDetection: changeDetection, + inputs: inputsMap, + outputs: outputsMap, + hostListeners: hostListeners, + hostProperties: hostProperties, + hostAttributes: hostAttributes, + providers: providers, + viewProviders: viewProviders, + queries: queries, + viewQueries: viewQueries, + entryComponents: entryComponents, + template: template, + }); + }; + Object.defineProperty(CompileDirectiveMetadata.prototype, "identifier", { + get: function () { return this.type; }, + enumerable: true, + configurable: true + }); + CompileDirectiveMetadata.prototype.toSummary = function () { + return { + isSummary: true, + type: this.type, + isComponent: this.isComponent, + selector: this.selector, + exportAs: this.exportAs, + inputs: this.inputs, + outputs: this.outputs, + hostListeners: this.hostListeners, + hostProperties: this.hostProperties, + hostAttributes: this.hostAttributes, + providers: this.providers, + viewProviders: this.viewProviders, + queries: this.queries, + entryComponents: this.entryComponents, + changeDetection: this.changeDetection, + template: this.template && this.template.toSummary() + }; + }; + return CompileDirectiveMetadata; +}()); +/** + * Construct {@link CompileDirectiveMetadata} from {@link ComponentTypeMetadata} and a selector. + */ +function createHostComponentMeta(compMeta) { + var template = __WEBPACK_IMPORTED_MODULE_3__selector__["a" /* CssSelector */].parse(compMeta.selector)[0].getMatchingElementTemplate(); + return CompileDirectiveMetadata.create({ + type: new CompileTypeMetadata({ + reference: Object, + name: compMeta.type.name + "_Host", + moduleUrl: compMeta.type.moduleUrl, + isHost: true + }), + template: new CompileTemplateMetadata({ + encapsulation: __WEBPACK_IMPORTED_MODULE_0__angular_core__["N" /* ViewEncapsulation */].None, + template: template, + templateUrl: '', + styles: [], + styleUrls: [], + ngContentSelectors: [], + animations: [] + }), + changeDetection: __WEBPACK_IMPORTED_MODULE_0__angular_core__["S" /* ChangeDetectionStrategy */].Default, + inputs: [], + outputs: [], + host: {}, + isComponent: true, + selector: '*', + providers: [], + viewProviders: [], + queries: [], + viewQueries: [] + }); +} +var CompilePipeMetadata = (function () { + function CompilePipeMetadata(_a) { + var _b = _a === void 0 ? {} : _a, type = _b.type, name = _b.name, pure = _b.pure; + this.type = type; + this.name = name; + this.pure = !!pure; + } + Object.defineProperty(CompilePipeMetadata.prototype, "identifier", { + get: function () { return this.type; }, + enumerable: true, + configurable: true + }); + CompilePipeMetadata.prototype.toSummary = function () { + return { isSummary: true, type: this.type, name: this.name, pure: this.pure }; + }; + return CompilePipeMetadata; +}()); +/** + * Metadata regarding compilation of a module. + */ +var CompileNgModuleMetadata = (function () { + function CompileNgModuleMetadata(_a) { + var _b = _a === void 0 ? {} : _a, type = _b.type, providers = _b.providers, declaredDirectives = _b.declaredDirectives, exportedDirectives = _b.exportedDirectives, declaredPipes = _b.declaredPipes, exportedPipes = _b.exportedPipes, entryComponents = _b.entryComponents, bootstrapComponents = _b.bootstrapComponents, importedModules = _b.importedModules, exportedModules = _b.exportedModules, schemas = _b.schemas, transitiveModule = _b.transitiveModule, id = _b.id; + this.type = type; + this.declaredDirectives = _normalizeArray(declaredDirectives); + this.exportedDirectives = _normalizeArray(exportedDirectives); + this.declaredPipes = _normalizeArray(declaredPipes); + this.exportedPipes = _normalizeArray(exportedPipes); + this.providers = _normalizeArray(providers); + this.entryComponents = _normalizeArray(entryComponents); + this.bootstrapComponents = _normalizeArray(bootstrapComponents); + this.importedModules = _normalizeArray(importedModules); + this.exportedModules = _normalizeArray(exportedModules); + this.schemas = _normalizeArray(schemas); + this.id = id; + this.transitiveModule = transitiveModule; + } + Object.defineProperty(CompileNgModuleMetadata.prototype, "identifier", { + get: function () { return this.type; }, + enumerable: true, + configurable: true + }); + CompileNgModuleMetadata.prototype.toSummary = function () { + return { + isSummary: true, + type: this.type, + entryComponents: this.entryComponents, + providers: this.providers, + importedModules: this.importedModules, + exportedModules: this.exportedModules, + exportedDirectives: this.exportedDirectives, + exportedPipes: this.exportedPipes, + directiveLoaders: this.transitiveModule.directiveLoaders + }; + }; + CompileNgModuleMetadata.prototype.toInjectorSummary = function () { + return { + isSummary: true, + type: this.type, + entryComponents: this.entryComponents, + providers: this.providers, + importedModules: this.importedModules, + exportedModules: this.exportedModules + }; + }; + CompileNgModuleMetadata.prototype.toDirectiveSummary = function () { + return { + isSummary: true, + type: this.type, + exportedDirectives: this.exportedDirectives, + exportedPipes: this.exportedPipes, + exportedModules: this.exportedModules, + directiveLoaders: this.transitiveModule.directiveLoaders + }; + }; + return CompileNgModuleMetadata; +}()); +var TransitiveCompileNgModuleMetadata = (function () { + function TransitiveCompileNgModuleMetadata(modules, providers, entryComponents, directives, pipes, directiveLoaders) { + var _this = this; + this.modules = modules; + this.providers = providers; + this.entryComponents = entryComponents; + this.directives = directives; + this.pipes = pipes; + this.directiveLoaders = directiveLoaders; + this.directivesSet = new Set(); + this.pipesSet = new Set(); + directives.forEach(function (dir) { return _this.directivesSet.add(dir.reference); }); + pipes.forEach(function (pipe) { return _this.pipesSet.add(pipe.reference); }); + } + return TransitiveCompileNgModuleMetadata; +}()); +function removeIdentifierDuplicates(items) { + var map = new Map(); + items.forEach(function (item) { + if (!map.get(item.identifier.reference)) { + map.set(item.identifier.reference, item); + } + }); + return Array.from(map.values()); +} +function _normalizeArray(obj) { + return obj || []; +} +function isStaticSymbol(value) { + return typeof value === 'object' && value !== null && value['name'] && value['filePath']; +} +var ProviderMeta = (function () { + function ProviderMeta(token, _a) { + var useClass = _a.useClass, useValue = _a.useValue, useExisting = _a.useExisting, useFactory = _a.useFactory, deps = _a.deps, multi = _a.multi; + this.token = token; + this.useClass = useClass; + this.useValue = useValue; + this.useExisting = useExisting; + this.useFactory = useFactory; + this.dependencies = deps; + this.multi = !!multi; + } + return ProviderMeta; +}()); +//# sourceMappingURL=compile_metadata.js.map + +/***/ }), +/* 27 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var AsyncAction_1 = __webpack_require__(98); +var AsyncScheduler_1 = __webpack_require__(99); +exports.async = new AsyncScheduler_1.AsyncScheduler(AsyncAction_1.AsyncAction); +//# sourceMappingURL=async.js.map + +/***/ }), +/* 28 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core__ = __webpack_require__(0); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__util_dom__ = __webpack_require__(7); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__util_util__ = __webpack_require__(3); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return Platform; }); +/* harmony export (immutable) */ __webpack_exports__["f"] = setupPlatform; +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return UserAgentToken; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return NavigatorPlatformToken; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return DocumentDirToken; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return DocLangToken; }); + + + +/** + * @name Platform + * @description + * The Platform service can be used to get information about your current device. + * You can get all of the platforms associated with the device using the [platforms](#platforms) + * method, including whether the app is being viewed from a tablet, if it's + * on a mobile device or browser, and the exact platform (iOS, Android, etc). + * You can also get the orientation of the device, if it uses right-to-left + * language direction, and much much more. With this information you can completely + * customize your app to fit any device. + * + * @usage + * ```ts + * import { Platform } from 'ionic-angular'; + * + * @Component({...}) + * export MyPage { + * constructor(platform: Platform) { + * this.platform = platform; + * } + * } + * ``` + * @demo /docs/v2/demos/src/platform/ + */ +var Platform = (function () { + function Platform() { + var _this = this; + this._versions = {}; + this._onResizes = []; + this._bbActions = []; + this._pW = 0; + this._pH = 0; + this._lW = 0; + this._lH = 0; + this._isPortrait = null; + /** @private */ + this._platforms = []; + // Events meant to be triggered by the engine + // ********************************************** + /** + * @private + */ + this.backButton = new __WEBPACK_IMPORTED_MODULE_0__angular_core__["d" /* EventEmitter */](); + /** + * The pause event emits when the native platform puts the application + * into the background, typically when the user switches to a different + * application. This event would emit when a Cordova app is put into + * the background, however, it would not fire on a standard web browser. + */ + this.pause = new __WEBPACK_IMPORTED_MODULE_0__angular_core__["d" /* EventEmitter */](); + /** + * The resume event emits when the native platform pulls the application + * out from the background. This event would emit when a Cordova app comes + * out from the background, however, it would not fire on a standard web browser. + */ + this.resume = new __WEBPACK_IMPORTED_MODULE_0__angular_core__["d" /* EventEmitter */](); + this._readyPromise = new Promise(function (res) { _this._readyResolve = res; }); + this.backButton.subscribe(function () { + // the hardware back button event has been fired + (void 0) /* console.debug */; + // decide which backbutton action should run + _this.runBackButtonAction(); + }); + } + /** + * @private + */ + Platform.prototype.setZone = function (zone) { + this.zone = zone; + }; + // Methods + // ********************************************** + /** + * @returns {boolean} returns true/false based on platform. + * @description + * Depending on the platform the user is on, `is(platformName)` will + * return `true` or `false`. Note that the same app can return `true` + * for more than one platform name. For example, an app running from + * an iPad would return `true` for the platform names: `mobile`, + * `ios`, `ipad`, and `tablet`. Additionally, if the app was running + * from Cordova then `cordova` would be true, and if it was running + * from a web browser on the iPad then `mobileweb` would be `true`. + * + * ``` + * import { Platform } from 'ionic-angular'; + * + * @Component({...}) + * export MyPage { + * constructor(platform: Platform) { + * this.platform = platform; + * + * if (this.platform.is('ios')) { + * // This will only print when on iOS + * console.log("I'm an iOS device!"); + * } + * } + * } + * ``` + * + * | Platform Name | Description | + * |-----------------|------------------------------------| + * | android | on a device running Android. | + * | cordova | on a device running Cordova. | + * | core | on a desktop device. | + * | ios | on a device running iOS. | + * | ipad | on an iPad device. | + * | iphone | on an iPhone device. | + * | mobile | on a mobile device. | + * | mobileweb | in a browser on a mobile device. | + * | phablet | on a phablet device. | + * | tablet | on a tablet device. | + * | windows | on a device running Windows. | + * + * @param {string} platformName + */ + Platform.prototype.is = function (platformName) { + return (this._platforms.indexOf(platformName) > -1); + }; + /** + * @returns {array} the array of platforms + * @description + * Depending on what device you are on, `platforms` can return multiple values. + * Each possible value is a hierarchy of platforms. For example, on an iPhone, + * it would return `mobile`, `ios`, and `iphone`. + * + * ``` + * import { Platform } from 'ionic-angular'; + * + * @Component({...}) + * export MyPage { + * constructor(platform: Platform) { + * this.platform = platform; + * + * // This will print an array of the current platforms + * console.log(this.platform.platforms()); + * } + * } + * ``` + */ + Platform.prototype.platforms = function () { + // get the array of active platforms, which also knows the hierarchy, + // with the last one the most important + return this._platforms; + }; + /** + * Returns an object containing version information about all of the platforms. + * + * ``` + * import { Platform } from 'ionic-angular'; + * + * @Component({...}) + * export MyPage { + * constructor(platform: Platform) { + * this.platform = platform; + * + * // This will print an object containing + * // all of the platforms and their versions + * console.log(platform.versions()); + * } + * } + * ``` + * + * @returns {object} An object containing all of the platforms and their versions. + */ + Platform.prototype.versions = function () { + // get all the platforms that have a valid parsed version + return this._versions; + }; + /** + * @private + */ + Platform.prototype.version = function () { + for (var platformName in this._versions) { + if (this._versions[platformName]) { + return this._versions[platformName]; + } + } + return {}; + }; + /** + * Returns a promise when the platform is ready and native functionality + * can be called. If the app is running from within a web browser, then + * the promise will resolve when the DOM is ready. When the app is running + * from an application engine such as Cordova, then the promise will + * resolve when Cordova triggers the `deviceready` event. + * + * The resolved value is the `readySource`, which states which platform + * ready was used. For example, when Cordova is ready, the resolved ready + * source is `cordova`. The default ready source value will be `dom`. The + * `readySource` is useful if different logic should run depending on the + * platform the app is running from. For example, only Cordova can execute + * the status bar plugin, so the web should not run status bar plugin logic. + * + * ``` + * import { Component } from '@angular/core'; + * import { Platform } from 'ionic-angular'; + * + * @Component({...}) + * export MyApp { + * constructor(platform: Platform) { + * platform.ready().then((readySource) => { + * console.log('Platform ready from', readySource); + * // Platform now ready, execute any required native code + * }); + * } + * } + * ``` + * @returns {promise} + */ + Platform.prototype.ready = function () { + return this._readyPromise; + }; + /** + * @private + * This should be triggered by the engine when the platform is + * ready. If there was no custom prepareReady method from the engine, + * such as Cordova or Electron, then it uses the default DOM ready. + */ + Platform.prototype.triggerReady = function (readySource) { + var _this = this; + this.zone.run(function () { + _this._readyResolve(readySource); + }); + }; + /** + * @private + * This is the default prepareReady if it's not replaced by an engine, + * such as Cordova or Electron. If there was no custom prepareReady + * method from an engine then it uses the method below, which triggers + * the platform ready on the DOM ready event, and the default resolved + * value is `dom`. + */ + Platform.prototype.prepareReady = function () { + var _this = this; + __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util_dom__["e" /* ready */])(function () { + _this.triggerReady('dom'); + }); + }; + /** + * Set the app's language direction, which will update the `dir` attribute + * on the app's root `` element. We recommend the app's `index.html` + * file already has the correct `dir` attribute value set, such as + * `` or ``. This method is useful if the + * direction needs to be dynamically changed per user/session. + * [W3C: Structural markup and right-to-left text in HTML](http://www.w3.org/International/questions/qa-html-dir) + * @param {string} dir Examples: `rtl`, `ltr` + */ + Platform.prototype.setDir = function (dir, updateDocument) { + this._dir = (dir || '').toLowerCase(); + if (updateDocument !== false) { + document.documentElement.setAttribute('dir', dir); + } + }; + /** + * Returns app's language direction. + * We recommend the app's `index.html` file already has the correct `dir` + * attribute value set, such as `` or ``. + * [W3C: Structural markup and right-to-left text in HTML](http://www.w3.org/International/questions/qa-html-dir) + * @returns {string} + */ + Platform.prototype.dir = function () { + return this._dir; + }; + /** + * Returns if this app is using right-to-left language direction or not. + * We recommend the app's `index.html` file already has the correct `dir` + * attribute value set, such as `` or ``. + * [W3C: Structural markup and right-to-left text in HTML](http://www.w3.org/International/questions/qa-html-dir) + * @returns {boolean} + */ + Platform.prototype.isRTL = function () { + return (this._dir === 'rtl'); + }; + /** + * Set the app's language and optionally the country code, which will update + * the `lang` attribute on the app's root `` element. + * We recommend the app's `index.html` file already has the correct `lang` + * attribute value set, such as ``. This method is useful if + * the language needs to be dynamically changed per user/session. + * [W3C: Declaring language in HTML](http://www.w3.org/International/questions/qa-html-language-declarations) + * @param {string} language Examples: `en-US`, `en-GB`, `ar`, `de`, `zh`, `es-MX` + */ + Platform.prototype.setLang = function (language, updateDocument) { + this._lang = language; + if (updateDocument !== false) { + document.documentElement.setAttribute('lang', language); + } + }; + /** + * Returns app's language and optional country code. + * We recommend the app's `index.html` file already has the correct `lang` + * attribute value set, such as ``. + * [W3C: Declaring language in HTML](http://www.w3.org/International/questions/qa-html-language-declarations) + * @returns {string} + */ + Platform.prototype.lang = function () { + return this._lang; + }; + // Methods meant to be overridden by the engine + // ********************************************** + // Provided NOOP methods so they do not error when + // called by engines (the browser)that do not provide them + /** + * @private + */ + Platform.prototype.exitApp = function () { }; + /** + * The back button event is triggered when the user presses the native + * platform's back button, also referred to as the "hardware" back button. + * This event is only used within Cordova apps running on Android and + * Windows platforms. This event is not fired on iOS since iOS doesn't come + * with a hardware back button in the same sense an Android or Windows device + * does. + * + * Registering a hardware back button action and setting a priority allows + * apps to control which action should be called when the hardware back + * button is pressed. This method decides which of the registered back button + * actions has the highest priority and should be called. + * + * @param {Function} callback Called when the back button is pressed, + * if this registered action has the highest priority. + * @param {number} priority Set the priority for this action. Only the highest priority will execute. Defaults to `0`. + * @returns {Function} A function that, when called, will unregister + * the its back button action. + */ + Platform.prototype.registerBackButtonAction = function (fn, priority) { + var _this = this; + if (priority === void 0) { priority = 0; } + var action = { fn: fn, priority: priority }; + this._bbActions.push(action); + // return a function to unregister this back button action + return function () { + __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_2__util_util__["d" /* removeArrayItem */])(_this._bbActions, action); + }; + }; + /** + * @private + */ + Platform.prototype.runBackButtonAction = function () { + // decide which one back button action should run + var winner = null; + this._bbActions.forEach(function (action) { + if (!winner || action.priority >= winner.priority) { + winner = action; + } + }); + // run the winning action if there is one + winner && winner.fn && winner.fn(); + }; + // Getter/Setter Methods + // ********************************************** + /** + * @private + */ + Platform.prototype.setUserAgent = function (userAgent) { + this._ua = userAgent; + }; + /** + * @private + */ + Platform.prototype.setQueryParams = function (queryParams) { + this._qp = queryParams; + }; + /** + * @private + */ + Platform.prototype.userAgent = function () { + return this._ua || ''; + }; + /** + * @private + */ + Platform.prototype.setNavigatorPlatform = function (navigatorPlatform) { + this._bPlt = navigatorPlatform; + }; + /** + * @private + */ + Platform.prototype.navigatorPlatform = function () { + return this._bPlt || ''; + }; + /** + * Gets the width of the platform's viewport using `window.innerWidth`. + * Using this method is preferred since the dimension is a cached value, + * which reduces the chance of multiple and expensive DOM reads. + */ + Platform.prototype.width = function () { + this._calcDim(); + return this._isPortrait ? this._pW : this._lW; + }; + /** + * Gets the height of the platform's viewport using `window.innerHeight`. + * Using this method is preferred since the dimension is a cached value, + * which reduces the chance of multiple and expensive DOM reads. + */ + Platform.prototype.height = function () { + this._calcDim(); + return this._isPortrait ? this._pH : this._lH; + }; + /** + * Returns `true` if the app is in portait mode. + */ + Platform.prototype.isPortrait = function () { + this._calcDim(); + return this._isPortrait; + }; + /** + * Returns `true` if the app is in landscape mode. + */ + Platform.prototype.isLandscape = function () { + return !this.isPortrait(); + }; + /** + * @private + */ + Platform.prototype._calcDim = function () { + if (this._isPortrait === null) { + var winDimensions = __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util_dom__["d" /* windowDimensions */])(); + var screenWidth = window.screen.width || winDimensions.width; + var screenHeight = window.screen.height || winDimensions.height; + if (screenWidth < screenHeight) { + this._isPortrait = true; + if (this._pW < winDimensions.width) { + this._pW = winDimensions.width; + } + if (this._pH < winDimensions.height) { + this._pH = winDimensions.height; + } + } + else { + this._isPortrait = false; + if (this._lW < winDimensions.width) { + this._lW = winDimensions.width; + } + if (this._lH < winDimensions.height) { + this._lH = winDimensions.height; + } + } + } + }; + /** + * @private + */ + Platform.prototype.windowResize = function () { + var _this = this; + clearTimeout(this._resizeTm); + this._resizeTm = setTimeout(function () { + __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util_dom__["f" /* flushDimensionCache */])(); + _this._isPortrait = null; + for (var i = 0; i < _this._onResizes.length; i++) { + try { + _this._onResizes[i](); + } + catch (e) { + console.error(e); + } + } + }, 200); + }; + /** + * @private + */ + Platform.prototype.onResize = function (cb) { + var self = this; + self._onResizes.push(cb); + return function () { + __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_2__util_util__["d" /* removeArrayItem */])(self._onResizes, cb); + }; + }; + // Platform Registry + // ********************************************** + /** + * @private + */ + Platform.prototype.setPlatformConfigs = function (platformConfigs) { + this._registry = platformConfigs || {}; + }; + /** + * @private + */ + Platform.prototype.getPlatformConfig = function (platformName) { + return this._registry[platformName] || {}; + }; + /** + * @private + */ + Platform.prototype.registry = function () { + return this._registry; + }; + /** + * @private + */ + Platform.prototype.setDefault = function (platformName) { + this._default = platformName; + }; + /** + * @private + */ + Platform.prototype.testQuery = function (queryValue, queryTestValue) { + var valueSplit = queryValue.toLowerCase().split(';'); + return valueSplit.indexOf(queryTestValue) > -1; + }; + /** + * @private + */ + Platform.prototype.testNavigatorPlatform = function (navigatorPlatformExpression) { + var rgx = new RegExp(navigatorPlatformExpression, 'i'); + return rgx.test(this._bPlt); + }; + /** + * @private + */ + Platform.prototype.matchUserAgentVersion = function (userAgentExpression) { + if (this._ua && userAgentExpression) { + var val = this._ua.match(userAgentExpression); + if (val) { + return { + major: val[1], + minor: val[2] + }; + } + } + }; + Platform.prototype.testUserAgent = function (expression) { + if (this._ua) { + return this._ua.indexOf(expression) >= 0; + } + return false; + }; + /** + * @private + */ + Platform.prototype.isPlatformMatch = function (queryStringName, userAgentAtLeastHas, userAgentMustNotHave) { + if (userAgentMustNotHave === void 0) { userAgentMustNotHave = []; } + var queryValue = this._qp.get('ionicplatform'); + if (queryValue) { + return this.testQuery(queryValue, queryStringName); + } + userAgentAtLeastHas = userAgentAtLeastHas || [queryStringName]; + var userAgent = this._ua.toLowerCase(); + for (var i = 0; i < userAgentAtLeastHas.length; i++) { + if (userAgent.indexOf(userAgentAtLeastHas[i]) > -1) { + for (var j = 0; j < userAgentMustNotHave.length; j++) { + if (userAgent.indexOf(userAgentMustNotHave[j]) > -1) { + return false; + } + } + return true; + } + } + return false; + }; + /** @private */ + Platform.prototype.init = function () { + var rootPlatformNode; + var enginePlatformNode; + // figure out the most specific platform and active engine + var tmpPlatform; + for (var platformName in this._registry) { + tmpPlatform = this.matchPlatform(platformName); + if (tmpPlatform) { + // we found a platform match! + // check if its more specific than the one we already have + if (tmpPlatform.isEngine) { + // because it matched then this should be the active engine + // you cannot have more than one active engine + enginePlatformNode = tmpPlatform; + } + else if (!rootPlatformNode || tmpPlatform.depth > rootPlatformNode.depth) { + // only find the root node for platforms that are not engines + // set this node as the root since we either don't already + // have one, or this one is more specific that the current one + rootPlatformNode = tmpPlatform; + } + } + } + if (!rootPlatformNode) { + rootPlatformNode = new PlatformNode(this._registry, this._default); + } + // build a Platform instance filled with the + // hierarchy of active platforms and settings + if (rootPlatformNode) { + // check if we found an engine node (cordova/node-webkit/etc) + if (enginePlatformNode) { + // add the engine to the first in the platform hierarchy + // the original rootPlatformNode now becomes a child + // of the engineNode, which is not the new root + enginePlatformNode.child = rootPlatformNode; + rootPlatformNode.parent = enginePlatformNode; + rootPlatformNode = enginePlatformNode; + } + var platformNode = rootPlatformNode; + while (platformNode) { + insertSuperset(this._registry, platformNode); + platformNode = platformNode.child; + } + // make sure the root noot is actually the root + // incase a node was inserted before the root + platformNode = rootPlatformNode.parent; + while (platformNode) { + rootPlatformNode = platformNode; + platformNode = platformNode.parent; + } + platformNode = rootPlatformNode; + while (platformNode) { + platformNode.initialize(this); + // set the array of active platforms with + // the last one in the array the most important + this._platforms.push(platformNode.name); + // get the platforms version if a version parser was provided + this._versions[platformNode.name] = platformNode.version(this); + // go to the next platform child + platformNode = platformNode.child; + } + } + if (this._platforms.indexOf('mobile') > -1 && this._platforms.indexOf('cordova') === -1) { + this._platforms.push('mobileweb'); + } + }; + /** + * @private + */ + Platform.prototype.matchPlatform = function (platformName) { + // build a PlatformNode and assign config data to it + // use it's getRoot method to build up its hierarchy + // depending on which platforms match + var platformNode = new PlatformNode(this._registry, platformName); + var rootNode = platformNode.getRoot(this); + if (rootNode) { + rootNode.depth = 0; + var childPlatform = rootNode.child; + while (childPlatform) { + rootNode.depth++; + childPlatform = childPlatform.child; + } + } + return rootNode; + }; + return Platform; +}()); +function insertSuperset(registry, platformNode) { + var supersetPlaformName = platformNode.superset(); + if (supersetPlaformName) { + // add a platform in between two exist platforms + // so we can build the correct hierarchy of active platforms + var supersetPlatform = new PlatformNode(registry, supersetPlaformName); + supersetPlatform.parent = platformNode.parent; + supersetPlatform.child = platformNode; + if (supersetPlatform.parent) { + supersetPlatform.parent.child = supersetPlatform; + } + platformNode.parent = supersetPlatform; + } +} +/** + * @private + */ +var PlatformNode = (function () { + function PlatformNode(registry, platformName) { + this.registry = registry; + this.c = registry[platformName]; + this.name = platformName; + this.isEngine = this.c.isEngine; + } + PlatformNode.prototype.settings = function () { + return this.c.settings || {}; + }; + PlatformNode.prototype.superset = function () { + return this.c.superset; + }; + PlatformNode.prototype.isMatch = function (p) { + return this.c.isMatch && this.c.isMatch(p) || false; + }; + PlatformNode.prototype.initialize = function (platform) { + this.c.initialize && this.c.initialize(platform); + }; + PlatformNode.prototype.version = function (p) { + if (this.c.versionParser) { + var v = this.c.versionParser(p); + if (v) { + var str = v.major + '.' + v.minor; + return { + str: str, + num: parseFloat(str), + major: parseInt(v.major, 10), + minor: parseInt(v.minor, 10) + }; + } + } + }; + PlatformNode.prototype.getRoot = function (p) { + if (this.isMatch(p)) { + var parents = this.getSubsetParents(this.name); + if (!parents.length) { + return this; + } + var platformNode = null; + var rootPlatformNode = null; + for (var i = 0; i < parents.length; i++) { + platformNode = new PlatformNode(this.registry, parents[i]); + platformNode.child = this; + rootPlatformNode = platformNode.getRoot(p); + if (rootPlatformNode) { + this.parent = platformNode; + return rootPlatformNode; + } + } + } + return null; + }; + PlatformNode.prototype.getSubsetParents = function (subsetPlatformName) { + var parentPlatformNames = []; + var platform = null; + for (var platformName in this.registry) { + platform = this.registry[platformName]; + if (platform.subsets && platform.subsets.indexOf(subsetPlatformName) > -1) { + parentPlatformNames.push(platformName); + } + } + return parentPlatformNames; + }; + return PlatformNode; +}()); +/** + * @private + */ +function setupPlatform(platformConfigs, queryParams, userAgent, navigatorPlatform, docDirection, docLanguage, zone) { + var p = new Platform(); + p.setDefault('core'); + p.setPlatformConfigs(platformConfigs); + p.setUserAgent(userAgent); + p.setQueryParams(queryParams); + p.setNavigatorPlatform(navigatorPlatform); + p.setDir(docDirection, false); + p.setLang(docLanguage, false); + p.setZone(zone); + p.init(); + return p; +} +/** + * @private + */ +var UserAgentToken = new __WEBPACK_IMPORTED_MODULE_0__angular_core__["i" /* OpaqueToken */]('USERAGENT'); +/** + * @private + */ +var NavigatorPlatformToken = new __WEBPACK_IMPORTED_MODULE_0__angular_core__["i" /* OpaqueToken */]('NAVPLT'); +/** + * @private + */ +var DocumentDirToken = new __WEBPACK_IMPORTED_MODULE_0__angular_core__["i" /* OpaqueToken */]('DOCDIR'); +/** + * @private + */ +var DocLangToken = new __WEBPACK_IMPORTED_MODULE_0__angular_core__["i" /* OpaqueToken */]('DOCLANG'); +//# sourceMappingURL=platform.js.map + +/***/ }), +/* 29 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* WEBPACK VAR INJECTION */(function(global) {/* unused harmony export scheduleMicroTask */ +/* unused harmony export global */ +/* harmony export (immutable) */ __webpack_exports__["f"] = getTypeNameForDebugging; +/* harmony export (immutable) */ __webpack_exports__["e"] = isPresent; +/* harmony export (immutable) */ __webpack_exports__["b"] = isBlank; +/* unused harmony export isStrictStringMap */ +/* harmony export (immutable) */ __webpack_exports__["c"] = isDate; +/* harmony export (immutable) */ __webpack_exports__["a"] = stringify; +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return NumberWrapper; }); +/* unused harmony export looseIdentical */ +/* harmony export (immutable) */ __webpack_exports__["g"] = isJsObject; +/* unused harmony export print */ +/* unused harmony export warn */ +/* unused harmony export setValueOnPath */ +/* harmony export (immutable) */ __webpack_exports__["h"] = getSymbolIterator; +/* unused harmony export isPrimitive */ +/* unused harmony export escapeRegExp */ +/** + * @license + * Copyright Google Inc. All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */ +var globalScope; +if (typeof window === 'undefined') { + if (typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope) { + // TODO: Replace any with WorkerGlobalScope from lib.webworker.d.ts #3492 + globalScope = self; + } + else { + globalScope = global; + } +} +else { + globalScope = window; +} +function scheduleMicroTask(fn) { + Zone.current.scheduleMicroTask('scheduleMicrotask', fn); +} +// Need to declare a new variable for global here since TypeScript +// exports the original value of the symbol. +var _global = globalScope; + +function getTypeNameForDebugging(type) { + return type['name'] || typeof type; +} +// TODO: remove calls to assert in production environment +// Note: Can't just export this and import in in other files +// as `assert` is a reserved keyword in Dart +_global.assert = function assert(condition) { + // TODO: to be fixed properly via #2830, noop for now +}; +function isPresent(obj) { + return obj != null; +} +function isBlank(obj) { + return obj == null; +} +var STRING_MAP_PROTO = Object.getPrototypeOf({}); +function isStrictStringMap(obj) { + return typeof obj === 'object' && obj !== null && Object.getPrototypeOf(obj) === STRING_MAP_PROTO; +} +function isDate(obj) { + return obj instanceof Date && !isNaN(obj.valueOf()); +} +function stringify(token) { + if (typeof token === 'string') { + return token; + } + if (token == null) { + return '' + token; + } + if (token.overriddenName) { + return token.overriddenName; + } + if (token.name) { + return token.name; + } + var res = token.toString(); + var newLineIndex = res.indexOf('\n'); + return newLineIndex === -1 ? res : res.substring(0, newLineIndex); +} +var NumberWrapper = (function () { + function NumberWrapper() { + } + NumberWrapper.parseIntAutoRadix = function (text) { + var result = parseInt(text); + if (isNaN(result)) { + throw new Error('Invalid integer literal when parsing ' + text); + } + return result; + }; + NumberWrapper.isNumeric = function (value) { return !isNaN(value - parseFloat(value)); }; + return NumberWrapper; +}()); +// JS has NaN !== NaN +function looseIdentical(a, b) { + return a === b || typeof a === 'number' && typeof b === 'number' && isNaN(a) && isNaN(b); +} +function isJsObject(o) { + return o !== null && (typeof o === 'function' || typeof o === 'object'); +} +function print(obj) { + console.log(obj); +} +function warn(obj) { + console.warn(obj); +} +function setValueOnPath(global, path, value) { + var parts = path.split('.'); + var obj = global; + while (parts.length > 1) { + var name_1 = parts.shift(); + if (obj.hasOwnProperty(name_1) && obj[name_1] != null) { + obj = obj[name_1]; + } + else { + obj = obj[name_1] = {}; + } + } + if (obj === undefined || obj === null) { + obj = {}; + } + obj[parts.shift()] = value; +} +var _symbolIterator = null; +function getSymbolIterator() { + if (!_symbolIterator) { + if (globalScope.Symbol && Symbol.iterator) { + _symbolIterator = Symbol.iterator; + } + else { + // es6-shim specific logic + var keys = Object.getOwnPropertyNames(Map.prototype); + for (var i = 0; i < keys.length; ++i) { + var key = keys[i]; + if (key !== 'entries' && key !== 'size' && + Map.prototype[key] === Map.prototype['entries']) { + _symbolIterator = key; + } + } + } + } + return _symbolIterator; +} +function isPrimitive(obj) { + return !isJsObject(obj); +} +function escapeRegExp(s) { + return s.replace(/([.*+?^=!:${}()|[\]\/\\])/g, '\\$1'); +} +//# sourceMappingURL=lang.js.map +/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(57))) + +/***/ }), +/* 30 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony export (immutable) */ __webpack_exports__["b"] = unimplemented; +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return BaseError; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return WrappedError; }); +/** + * @license + * Copyright Google Inc. All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */ +var __extends = (this && this.__extends) || function (d, b) { + for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); +}; +function unimplemented() { + throw new Error('unimplemented'); +} +/** + * @stable + */ +var BaseError = (function (_super) { + __extends(BaseError, _super); + function BaseError(message) { + // Errors don't use current this, instead they create a new instance. + // We have to do forward all of our api to the nativeInstance. + var nativeError = _super.call(this, message); + this._nativeError = nativeError; + } + Object.defineProperty(BaseError.prototype, "message", { + get: function () { return this._nativeError.message; }, + set: function (message) { this._nativeError.message = message; }, + enumerable: true, + configurable: true + }); + Object.defineProperty(BaseError.prototype, "name", { + get: function () { return this._nativeError.name; }, + enumerable: true, + configurable: true + }); + Object.defineProperty(BaseError.prototype, "stack", { + get: function () { return this._nativeError.stack; }, + set: function (value) { this._nativeError.stack = value; }, + enumerable: true, + configurable: true + }); + BaseError.prototype.toString = function () { return this._nativeError.toString(); }; + return BaseError; +}(Error)); +/** + * @stable + */ +var WrappedError = (function (_super) { + __extends(WrappedError, _super); + function WrappedError(message, error) { + _super.call(this, message + " caused by: " + (error instanceof Error ? error.message : error)); + this.originalError = error; + } + Object.defineProperty(WrappedError.prototype, "stack", { + get: function () { + return (this.originalError instanceof Error ? this.originalError : this._nativeError) + .stack; + }, + enumerable: true, + configurable: true + }); + return WrappedError; +}(BaseError)); +//# sourceMappingURL=errors.js.map + +/***/ }), +/* 31 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__src_forms__ = __webpack_require__(597); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "a", function() { return __WEBPACK_IMPORTED_MODULE_0__src_forms__["a"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "b", function() { return __WEBPACK_IMPORTED_MODULE_0__src_forms__["b"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "c", function() { return __WEBPACK_IMPORTED_MODULE_0__src_forms__["c"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "d", function() { return __WEBPACK_IMPORTED_MODULE_0__src_forms__["d"]; }); +/** + * @license + * Copyright Google Inc. All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */ +/** + * @module + * @description + * Entry point for all public APIs of the forms package. + */ + +//# sourceMappingURL=index.js.map + +/***/ }), +/* 32 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core__ = __webpack_require__(0); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__button_button__ = __webpack_require__(94); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__config_config__ = __webpack_require__(5); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__util_form__ = __webpack_require__(36); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__icon_icon__ = __webpack_require__(209); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__ion__ = __webpack_require__(11); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__label_label__ = __webpack_require__(212); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__item_reorder__ = __webpack_require__(132); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return Item; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return ItemDivider; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return ItemContent; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return ItemGroup; }); +var __extends = (this && this.__extends) || function (d, b) { + for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); +}; + + + + + + + + +/** + * @name Item + * @description + * An item can contain text, images, and anything else. Generally it is placed in a list with other + * items. It can easily be swiped, deleted, reordered, edited, and more. An item is only required to + * be in a [List](../../list/List) if manipulating the item via gestures is required. It requires an + * [ItemSliding](../ItemSliding) wrapper element in order to be swiped. + * + * + * ## Common Usage + * There are a few elements that are considered items, but not all of them are styled to look the same. + * The basic item can be written as an `` element or it can be added to any element by adding + * `ion-item` as an attribute. List headers and item dividers, although styled differently, are also items + * and can be written as `` and ``, respectively. + * + * ### As an Element + * A basic item should be written as a `` element when it is not clickable. + * + * ```html + * + * Item + * + * ``` + * + * A list header should be written as ``. + * + * ```html + * + * List Header + * + * ``` + * + * An item divider should be written as ``. + * + * ```html + * + * Item Divider + * + * ``` + * + * ### As an Attribute + * The attribute `ion-item` should be added to a ` + * + * + * Anchor Item + * + * ``` + * + * Note: do not add `ion-item` as an attribute to an `` or `` element + * as they are already items and their styling will be changed to look like a basic item. + * + * ## Detail Arrows + * By default, ` + * + * + * Anchor Item with no Detail Arrow + * + * ``` + * + * This feature is not enabled by default for `md` and `wp` modes, but it can be enabled by setting the + * Sass variables `$item-md-detail-push-show` and `$item-wp-detail-push-show`, respectively, to `true`. + * It can also be disabled for ios by setting `$item-ios-detail-push-show` to `false`. See the + * [theming documentation](http://ionicframework.com/docs/v2/theming/overriding-ionic-variables/) for + * more information on overriding Sass variables. + * + * + * ## Item Placement + * Items rely heavily on content projection to position content. The item grabs content based on the + * element or attribute and positions it that way. This logic makes it possible to write a complex + * item with simple, understandable markup without having to worry about styling and positioning + * the elements. + * + * The below chart details the attributes item looks for and where it will place the element with + * that attribute inside of the item: + * + * | Attribute | Description | + * |----------------|----------------------------------------------------------------------------------------------------- | + * | `item-left` | Placed to the left of all other elements, outside of the inner item. | + * | `item-right` | Placed to the right of all other elements, inside of the inner item, outside of the input wrapper. | + * | `item-content` | Placed to the right of any `ion-label`, inside of the input wrapper. | + * + * ### Checkboxes, Radios and Toggles + * [Checkboxes](../../checkbox/Checkbox) are positioned in the same place as the `item-left` attribute. + * [Radios](../../radio/RadioButton) and [Toggles](../../toggle/Toggle) are positioned in the same place + * as the `item-right` attribute. All of these components can be positioned differently by adding the + * `item-left` or `item-right` attribute. + * + * ### Content and Inputs + * A [Label](../../label/Label) is placed inside of the item to the left of all content and inputs. The + * following components are all placed in the same position as the `item-content` attribute: [Select](../../select/Select), + * [Input](../../input/Input), [TextArea](../../input/TextArea), [DateTime](../../datetime/DateTime), and + * [Range](../../range/Range). + * + * Any element directly placed inside of an `` that does not have one of the previously mentioned + * attributes and isn't one of the above elements will be placed inside of a [Label](../../label/Label). + * + * ### Text Alignment + * By default, Items will align text to the left and add an ellipsis when the text is wider than the item. + * See the [Utility Attributes Documentation](../../../../theming/css-utilities/) for attributes that can + * be added to `ion-item` to transform the text. + * + * @usage + * + * ```html + * + * + * + * Header + * + * + * + * Item + * + * + * + * Item with Detail Arrow + * + * + * + * + * + * Item Divider + * + * + * + * + * + * Anchor Item + * + * + * + * Item with no border + * + * + * + * Multiline text that should wrap when it is too long + * to fit on one line in the item. + * + * + * + * ``` + * + * + * @advanced + * + * ```html + * + * + * + * + * + * List Header + * + * + * + * + * + * Item {% raw %}{{item}}{% endraw %} + * + * + * + * + * + * + * + * + * Item Label + * + *
+ * Item Content next to the label + *
+ *
+ * + * + * + * + * Item + * + * + * + * + * + * Item Divider + * + * + * + * + * + * Disabled Button Item + * + * + * + * + * + * + * + * + * Avatar Item + * + * + * + * + * + *

Item

+ *

Item Paragraph

+ * + * + * + *
+ * + * + * + * + * Item + * + * + * + * + * + * + *
+ * ``` + * + * + * @demo /docs/v2/demos/src/item/ + * @see {@link /docs/v2/components#lists List Component Docs} + * @see {@link ../../list/List List API Docs} + * @see {@link ../ItemSliding ItemSliding API Docs} + */ +var Item = (function (_super) { + __extends(Item, _super); + function Item(form, config, elementRef, renderer, reorder) { + _super.call(this, config, elementRef, renderer, 'item'); + this._ids = -1; + this._inputs = []; + this._viewLabel = true; + this._name = 'item'; + this._shouldHaveReorder = false; + /** + * @private + */ + this.labelId = null; + this._setName(elementRef); + this._shouldHaveReorder = !!reorder; + this.id = form.nextId().toString(); + // auto add "tappable" attribute to ion-item components that have a click listener + if (!renderer.orgListen) { + renderer.orgListen = renderer.listen; + renderer.listen = function (renderElement, name, callback) { + if (name === 'click' && renderElement.setAttribute) { + renderElement.setAttribute('tappable', ''); + } + return renderer.orgListen(renderElement, name, callback); + }; + } + } + Object.defineProperty(Item.prototype, "color", { + /** + * @input {string} The predefined color to use. For example: `"primary"`, `"secondary"`, `"danger"`. + */ + set: function (val) { + this._updateColor(val, this._name); + }, + enumerable: true, + configurable: true + }); + Object.defineProperty(Item.prototype, "mode", { + /** + * @input {string} The mode to apply to this component. + */ + set: function (val) { + this._setMode(val); + }, + enumerable: true, + configurable: true + }); + /** + * @private + */ + Item.prototype.registerInput = function (type) { + this._inputs.push(type); + return this.id + '-' + (++this._ids); + }; + /** + * @private + */ + Item.prototype.ngAfterContentInit = function () { + if (this._viewLabel && this._inputs.length) { + var labelText = this.getLabelText().trim(); + this._viewLabel = (labelText.length > 0); + } + if (this._inputs.length > 1) { + this.setElementClass('item-multiple-inputs', true); + } + }; + /** + * @private + */ + Item.prototype._updateColor = function (newColor, componentName) { + componentName = componentName || 'item'; // item-radio + this._setColor(newColor, componentName); + }; + /** + * @private + */ + Item.prototype._setName = function (elementRef) { + var nodeName = elementRef.nativeElement.nodeName.replace('ION-', ''); + if (nodeName === 'LIST-HEADER' || nodeName === 'ITEM-DIVIDER') { + this._name = nodeName; + } + }; + /** + * @private + */ + Item.prototype.getLabelText = function () { + return this._label ? this._label.text : ''; + }; + Object.defineProperty(Item.prototype, "contentLabel", { + /** + * @private + */ + set: function (label) { + if (label) { + this._label = label; + this.labelId = label.id = ('lbl-' + this.id); + if (label.type) { + this.setElementClass('item-label-' + label.type, true); + } + this._viewLabel = false; + } + }, + enumerable: true, + configurable: true + }); + Object.defineProperty(Item.prototype, "viewLabel", { + /** + * @private + */ + set: function (label) { + if (!this._label) { + this._label = label; + } + }, + enumerable: true, + configurable: true + }); + Object.defineProperty(Item.prototype, "_buttons", { + /** + * @private + */ + set: function (buttons) { + buttons.forEach(function (button) { + if (!button._size) { + button.setElementClass('item-button', true); + } + }); + }, + enumerable: true, + configurable: true + }); + Object.defineProperty(Item.prototype, "_icons", { + /** + * @private + */ + set: function (icons) { + icons.forEach(function (icon) { + icon.setElementClass('item-icon', true); + }); + }, + enumerable: true, + configurable: true + }); + Item.decorators = [ + { type: __WEBPACK_IMPORTED_MODULE_0__angular_core__["R" /* Component */], args: [{ + selector: 'ion-list-header,ion-item,[ion-item],ion-item-divider', + template: '' + + '
' + + '
' + + '' + + '' + + '' + + '' + + '' + + '
' + + '' + + '' + + '
' + + '
', + host: { + 'class': 'item' + }, + changeDetection: __WEBPACK_IMPORTED_MODULE_0__angular_core__["S" /* ChangeDetectionStrategy */].OnPush, + encapsulation: __WEBPACK_IMPORTED_MODULE_0__angular_core__["N" /* ViewEncapsulation */].None, + },] }, + ]; + /** @nocollapse */ + Item.ctorParameters = [ + { type: __WEBPACK_IMPORTED_MODULE_3__util_form__["a" /* Form */], }, + { type: __WEBPACK_IMPORTED_MODULE_2__config_config__["a" /* Config */], }, + { type: __WEBPACK_IMPORTED_MODULE_0__angular_core__["E" /* ElementRef */], }, + { type: __WEBPACK_IMPORTED_MODULE_0__angular_core__["F" /* Renderer */], }, + { type: __WEBPACK_IMPORTED_MODULE_7__item_reorder__["a" /* ItemReorder */], decorators: [{ type: __WEBPACK_IMPORTED_MODULE_0__angular_core__["h" /* Optional */] },] }, + ]; + Item.propDecorators = { + 'color': [{ type: __WEBPACK_IMPORTED_MODULE_0__angular_core__["y" /* Input */] },], + 'mode': [{ type: __WEBPACK_IMPORTED_MODULE_0__angular_core__["y" /* Input */] },], + 'contentLabel': [{ type: __WEBPACK_IMPORTED_MODULE_0__angular_core__["Q" /* ContentChild */], args: [__WEBPACK_IMPORTED_MODULE_6__label_label__["a" /* Label */],] },], + 'viewLabel': [{ type: __WEBPACK_IMPORTED_MODULE_0__angular_core__["X" /* ViewChild */], args: [__WEBPACK_IMPORTED_MODULE_6__label_label__["a" /* Label */],] },], + '_buttons': [{ type: __WEBPACK_IMPORTED_MODULE_0__angular_core__["T" /* ContentChildren */], args: [__WEBPACK_IMPORTED_MODULE_1__button_button__["a" /* Button */],] },], + '_icons': [{ type: __WEBPACK_IMPORTED_MODULE_0__angular_core__["T" /* ContentChildren */], args: [__WEBPACK_IMPORTED_MODULE_4__icon_icon__["a" /* Icon */],] },], + }; + return Item; +}(__WEBPACK_IMPORTED_MODULE_5__ion__["a" /* Ion */])); +/** + * @private + */ +var ItemDivider = (function (_super) { + __extends(ItemDivider, _super); + function ItemDivider(form, config, elementRef, renderer) { + _super.call(this, config, elementRef, renderer, 'item-divider'); + } + Object.defineProperty(ItemDivider.prototype, "color", { + /** + * @input {string} The predefined color to use. For example: `"primary"`, `"secondary"`, `"danger"`. + */ + set: function (val) { + this._setColor(val); + }, + enumerable: true, + configurable: true + }); + Object.defineProperty(ItemDivider.prototype, "mode", { + /** + * @input {string} The mode to apply to this component. + */ + set: function (val) { + this._setMode(val); + }, + enumerable: true, + configurable: true + }); + ItemDivider.decorators = [ + { type: __WEBPACK_IMPORTED_MODULE_0__angular_core__["x" /* Directive */], args: [{ + selector: 'ion-item-divider', + host: { + 'class': 'item-divider' + } + },] }, + ]; + /** @nocollapse */ + ItemDivider.ctorParameters = [ + { type: __WEBPACK_IMPORTED_MODULE_3__util_form__["a" /* Form */], }, + { type: __WEBPACK_IMPORTED_MODULE_2__config_config__["a" /* Config */], }, + { type: __WEBPACK_IMPORTED_MODULE_0__angular_core__["E" /* ElementRef */], }, + { type: __WEBPACK_IMPORTED_MODULE_0__angular_core__["F" /* Renderer */], }, + ]; + ItemDivider.propDecorators = { + 'color': [{ type: __WEBPACK_IMPORTED_MODULE_0__angular_core__["y" /* Input */] },], + 'mode': [{ type: __WEBPACK_IMPORTED_MODULE_0__angular_core__["y" /* Input */] },], + }; + return ItemDivider; +}(__WEBPACK_IMPORTED_MODULE_5__ion__["a" /* Ion */])); +/** + * @private + */ +var ItemContent = (function () { + function ItemContent() { + } + ItemContent.decorators = [ + { type: __WEBPACK_IMPORTED_MODULE_0__angular_core__["x" /* Directive */], args: [{ + selector: 'ion-item,[ion-item]', + host: { + 'class': 'item-block' + } + },] }, + ]; + /** @nocollapse */ + ItemContent.ctorParameters = []; + return ItemContent; +}()); +/** + * @private + */ +var ItemGroup = (function () { + function ItemGroup() { + } + ItemGroup.decorators = [ + { type: __WEBPACK_IMPORTED_MODULE_0__angular_core__["x" /* Directive */], args: [{ + selector: 'ion-item-group' + },] }, + ]; + /** @nocollapse */ + ItemGroup.ctorParameters = []; + return ItemGroup; +}()); +//# sourceMappingURL=item.js.map + +/***/ }), +/* 33 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__facade_lang__ = __webpack_require__(6); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return ParseLocation; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return ParseSourceFile; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return ParseSourceSpan; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return ParseErrorLevel; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return ParseError; }); + +var ParseLocation = (function () { + function ParseLocation(file, offset, line, col) { + this.file = file; + this.offset = offset; + this.line = line; + this.col = col; + } + ParseLocation.prototype.toString = function () { + return __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__facade_lang__["a" /* isPresent */])(this.offset) ? this.file.url + "@" + this.line + ":" + this.col : this.file.url; + }; + return ParseLocation; +}()); +var ParseSourceFile = (function () { + function ParseSourceFile(content, url) { + this.content = content; + this.url = url; + } + return ParseSourceFile; +}()); +var ParseSourceSpan = (function () { + function ParseSourceSpan(start, end, details) { + if (details === void 0) { details = null; } + this.start = start; + this.end = end; + this.details = details; + } + ParseSourceSpan.prototype.toString = function () { + return this.start.file.content.substring(this.start.offset, this.end.offset); + }; + return ParseSourceSpan; +}()); +var ParseErrorLevel; +(function (ParseErrorLevel) { + ParseErrorLevel[ParseErrorLevel["WARNING"] = 0] = "WARNING"; + ParseErrorLevel[ParseErrorLevel["FATAL"] = 1] = "FATAL"; +})(ParseErrorLevel || (ParseErrorLevel = {})); +var ParseError = (function () { + function ParseError(span, msg, level) { + if (level === void 0) { level = ParseErrorLevel.FATAL; } + this.span = span; + this.msg = msg; + this.level = level; + } + ParseError.prototype.toString = function () { + var source = this.span.start.file.content; + var ctxStart = this.span.start.offset; + var contextStr = ''; + var details = ''; + if (__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__facade_lang__["a" /* isPresent */])(ctxStart)) { + if (ctxStart > source.length - 1) { + ctxStart = source.length - 1; + } + var ctxEnd = ctxStart; + var ctxLen = 0; + var ctxLines = 0; + while (ctxLen < 100 && ctxStart > 0) { + ctxStart--; + ctxLen++; + if (source[ctxStart] == '\n') { + if (++ctxLines == 3) { + break; + } + } + } + ctxLen = 0; + ctxLines = 0; + while (ctxLen < 100 && ctxEnd < source.length - 1) { + ctxEnd++; + ctxLen++; + if (source[ctxEnd] == '\n') { + if (++ctxLines == 3) { + break; + } + } + } + var context = source.substring(ctxStart, this.span.start.offset) + '[ERROR ->]' + + source.substring(this.span.start.offset, ctxEnd + 1); + contextStr = " (\"" + context + "\")"; + } + if (this.span.details) { + details = ", " + this.span.details; + } + return "" + this.msg + contextStr + ": " + this.span.start + details; + }; + return ParseError; +}()); +//# sourceMappingURL=parse_util.js.map + +/***/ }), +/* 34 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__di_metadata__ = __webpack_require__(114); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "a", function() { return __WEBPACK_IMPORTED_MODULE_0__di_metadata__["a"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "c", function() { return __WEBPACK_IMPORTED_MODULE_0__di_metadata__["b"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "f", function() { return __WEBPACK_IMPORTED_MODULE_0__di_metadata__["d"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "g", function() { return __WEBPACK_IMPORTED_MODULE_0__di_metadata__["e"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "i", function() { return __WEBPACK_IMPORTED_MODULE_0__di_metadata__["f"]; }); +/* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "j", function() { return __WEBPACK_IMPORTED_MODULE_0__di_metadata__["c"]; }); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__di_forward_ref__ = __webpack_require__(174); +/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return __WEBPACK_IMPORTED_MODULE_1__di_forward_ref__["a"]; }); +/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return __WEBPACK_IMPORTED_MODULE_1__di_forward_ref__["b"]; }); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__di_injector__ = __webpack_require__(84); +/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return __WEBPACK_IMPORTED_MODULE_2__di_injector__["b"]; }); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__di_reflective_injector__ = __webpack_require__(578); +/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return __WEBPACK_IMPORTED_MODULE_3__di_reflective_injector__["a"]; }); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__di_reflective_provider__ = __webpack_require__(177); +/* unused harmony reexport ResolvedReflectiveFactory */ +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__di_reflective_key__ = __webpack_require__(176); +/* unused harmony reexport ReflectiveKey */ +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__di_opaque_token__ = __webpack_require__(175); +/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return __WEBPACK_IMPORTED_MODULE_6__di_opaque_token__["a"]; }); +/** + * @license + * Copyright Google Inc. All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */ +/** + * @module + * @description + * The `di` module provides dependency injection container services. + */ + + + + + + + +//# sourceMappingURL=di.js.map + +/***/ }), +/* 35 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core__ = __webpack_require__(0); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return NG_VALUE_ACCESSOR; }); +/** + * @license + * Copyright Google Inc. All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */ + +/** + * Used to provide a {@link ControlValueAccessor} for form controls. + * + * See {@link DefaultValueAccessor} for how to implement one. + * @stable + */ +var NG_VALUE_ACCESSOR = new __WEBPACK_IMPORTED_MODULE_0__angular_core__["i" /* OpaqueToken */]('NgValueAccessor'); +//# sourceMappingURL=control_value_accessor.js.map + +/***/ }), +/* 36 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core__ = __webpack_require__(0); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__util__ = __webpack_require__(3); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return Form; }); +/* unused harmony export IonicTapInput */ +/* unused harmony export IonicFormInput */ + + +/** + * @private + */ +var Form = (function () { + function Form() { + this._focused = null; + this._ids = -1; + this._inputs = []; + } + Form.prototype.register = function (input) { + this._inputs.push(input); + }; + Form.prototype.deregister = function (input) { + __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util__["d" /* removeArrayItem */])(this._inputs, input); + if (input === this._focused) { + this._focused = null; + } + }; + Form.prototype.setAsFocused = function (input) { + this._focused = input; + }; + /** + * Focuses the next input element, if it exists. + */ + Form.prototype.tabFocus = function (currentInput) { + var index = this._inputs.indexOf(currentInput); + if (index > -1 && (index + 1) < this._inputs.length) { + var nextInput = this._inputs[index + 1]; + if (nextInput !== this._focused) { + (void 0) /* console.debug */; + return nextInput.initFocus(); + } + } + index = this._inputs.indexOf(this._focused); + if (index > 0) { + var previousInput = this._inputs[index - 1]; + if (previousInput) { + (void 0) /* console.debug */; + previousInput.initFocus(); + } + } + }; + Form.prototype.nextId = function () { + return ++this._ids; + }; + Form.decorators = [ + { type: __WEBPACK_IMPORTED_MODULE_0__angular_core__["c" /* Injectable */] }, + ]; + /** @nocollapse */ + Form.ctorParameters = []; + return Form; +}()); +var IonicTapInput = (function () { + function IonicTapInput() { + } + Object.defineProperty(IonicTapInput.prototype, "checked", { + get: function () { }, + set: function (val) { }, + enumerable: true, + configurable: true + }); + Object.defineProperty(IonicTapInput.prototype, "disabled", { + get: function () { }, + set: function (val) { }, + enumerable: true, + configurable: true + }); + return IonicTapInput; +}()); +var IonicFormInput = (function () { + function IonicFormInput() { + } + return IonicFormInput; +}()); +//# sourceMappingURL=form.js.map + +/***/ }), +/* 37 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__facade_lang__ = __webpack_require__(6); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__identifiers__ = __webpack_require__(17); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__output_output_ast__ = __webpack_require__(12); +/* harmony export (immutable) */ __webpack_exports__["b"] = createDiTokenExpression; +/* harmony export (immutable) */ __webpack_exports__["a"] = createInlineArray; +/* harmony export (immutable) */ __webpack_exports__["c"] = createPureProxy; +/* harmony export (immutable) */ __webpack_exports__["d"] = createEnumExpression; +/** + * @license + * Copyright Google Inc. All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */ + + + +function createDiTokenExpression(token) { + if (__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__facade_lang__["a" /* isPresent */])(token.value)) { + return __WEBPACK_IMPORTED_MODULE_2__output_output_ast__["f" /* literal */](token.value); + } + else if (token.identifierIsInstance) { + return __WEBPACK_IMPORTED_MODULE_2__output_output_ast__["g" /* importExpr */](token.identifier) + .instantiate([], __WEBPACK_IMPORTED_MODULE_2__output_output_ast__["d" /* importType */](token.identifier, [], [__WEBPACK_IMPORTED_MODULE_2__output_output_ast__["k" /* TypeModifier */].Const])); + } + else { + return __WEBPACK_IMPORTED_MODULE_2__output_output_ast__["g" /* importExpr */](token.identifier); + } +} +function createInlineArray(values) { + if (values.length === 0) { + return __WEBPACK_IMPORTED_MODULE_2__output_output_ast__["g" /* importExpr */](__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__identifiers__["a" /* resolveIdentifier */])(__WEBPACK_IMPORTED_MODULE_1__identifiers__["b" /* Identifiers */].EMPTY_INLINE_ARRAY)); + } + var log2 = Math.log(values.length) / Math.log(2); + var index = Math.ceil(log2); + var identifierSpec = index < __WEBPACK_IMPORTED_MODULE_1__identifiers__["b" /* Identifiers */].inlineArrays.length ? __WEBPACK_IMPORTED_MODULE_1__identifiers__["b" /* Identifiers */].inlineArrays[index] : + __WEBPACK_IMPORTED_MODULE_1__identifiers__["b" /* Identifiers */].InlineArrayDynamic; + var identifier = __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__identifiers__["a" /* resolveIdentifier */])(identifierSpec); + return __WEBPACK_IMPORTED_MODULE_2__output_output_ast__["g" /* importExpr */](identifier).instantiate([ + __WEBPACK_IMPORTED_MODULE_2__output_output_ast__["f" /* literal */](values.length) + ].concat(values)); +} +function createPureProxy(fn, argCount, pureProxyProp, builder) { + builder.fields.push(new __WEBPACK_IMPORTED_MODULE_2__output_output_ast__["c" /* ClassField */](pureProxyProp.name, null)); + var pureProxyId = argCount < __WEBPACK_IMPORTED_MODULE_1__identifiers__["b" /* Identifiers */].pureProxies.length ? __WEBPACK_IMPORTED_MODULE_1__identifiers__["b" /* Identifiers */].pureProxies[argCount] : null; + if (!pureProxyId) { + throw new Error("Unsupported number of argument for pure functions: " + argCount); + } + builder.ctorStmts.push(__WEBPACK_IMPORTED_MODULE_2__output_output_ast__["e" /* THIS_EXPR */].prop(pureProxyProp.name) + .set(__WEBPACK_IMPORTED_MODULE_2__output_output_ast__["g" /* importExpr */](__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__identifiers__["a" /* resolveIdentifier */])(pureProxyId)).callFn([fn])) + .toStmt()); +} +function createEnumExpression(enumType, enumValue) { + var enumName = Object.keys(enumType.runtime).find(function (propName) { return enumType.runtime[propName] === enumValue; }); + if (!enumName) { + throw new Error("Unknown enum value " + enumValue + " in " + enumType.name); + } + return __WEBPACK_IMPORTED_MODULE_2__output_output_ast__["g" /* importExpr */](__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__identifiers__["d" /* resolveEnumIdentifier */])(__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__identifiers__["a" /* resolveIdentifier */])(enumType), enumName)); +} +//# sourceMappingURL=identifier_util.js.map + +/***/ }), +/* 38 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__assertions__ = __webpack_require__(252); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return InterpolationConfig; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return DEFAULT_INTERPOLATION_CONFIG; }); +/** + * @license + * Copyright Google Inc. All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */ + +var InterpolationConfig = (function () { + function InterpolationConfig(start, end) { + this.start = start; + this.end = end; + } + InterpolationConfig.fromArray = function (markers) { + if (!markers) { + return DEFAULT_INTERPOLATION_CONFIG; + } + __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__assertions__["a" /* assertInterpolationSymbols */])('interpolation', markers); + return new InterpolationConfig(markers[0], markers[1]); + }; + ; + return InterpolationConfig; +}()); +var DEFAULT_INTERPOLATION_CONFIG = new InterpolationConfig('{{', '}}'); +//# sourceMappingURL=interpolation_config.js.map + +/***/ }), +/* 39 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return TextAst; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return BoundTextAst; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return AttrAst; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return BoundElementPropertyAst; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return BoundEventAst; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return ReferenceAst; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return VariableAst; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return ElementAst; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return EmbeddedTemplateAst; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return BoundDirectivePropertyAst; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return DirectiveAst; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return ProviderAst; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return ProviderAstType; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return NgContentAst; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return PropertyBindingType; }); +/* harmony export (immutable) */ __webpack_exports__["a"] = templateVisitAll; +/** + * @license + * Copyright Google Inc. All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */ +/** + * A segment of text within the template. + */ +var TextAst = (function () { + function TextAst(value, ngContentIndex, sourceSpan) { + this.value = value; + this.ngContentIndex = ngContentIndex; + this.sourceSpan = sourceSpan; + } + TextAst.prototype.visit = function (visitor, context) { return visitor.visitText(this, context); }; + return TextAst; +}()); +/** + * A bound expression within the text of a template. + */ +var BoundTextAst = (function () { + function BoundTextAst(value, ngContentIndex, sourceSpan) { + this.value = value; + this.ngContentIndex = ngContentIndex; + this.sourceSpan = sourceSpan; + } + BoundTextAst.prototype.visit = function (visitor, context) { + return visitor.visitBoundText(this, context); + }; + return BoundTextAst; +}()); +/** + * A plain attribute on an element. + */ +var AttrAst = (function () { + function AttrAst(name, value, sourceSpan) { + this.name = name; + this.value = value; + this.sourceSpan = sourceSpan; + } + AttrAst.prototype.visit = function (visitor, context) { return visitor.visitAttr(this, context); }; + return AttrAst; +}()); +/** + * A binding for an element property (e.g. `[property]="expression"`) or an animation trigger (e.g. + * `[@trigger]="stateExp"`) + */ +var BoundElementPropertyAst = (function () { + function BoundElementPropertyAst(name, type, securityContext, needsRuntimeSecurityContext, value, unit, sourceSpan) { + this.name = name; + this.type = type; + this.securityContext = securityContext; + this.needsRuntimeSecurityContext = needsRuntimeSecurityContext; + this.value = value; + this.unit = unit; + this.sourceSpan = sourceSpan; + } + BoundElementPropertyAst.prototype.visit = function (visitor, context) { + return visitor.visitElementProperty(this, context); + }; + Object.defineProperty(BoundElementPropertyAst.prototype, "isAnimation", { + get: function () { return this.type === PropertyBindingType.Animation; }, + enumerable: true, + configurable: true + }); + return BoundElementPropertyAst; +}()); +/** + * A binding for an element event (e.g. `(event)="handler()"`) or an animation trigger event (e.g. + * `(@trigger.phase)="callback($event)"`). + */ +var BoundEventAst = (function () { + function BoundEventAst(name, target, phase, handler, sourceSpan) { + this.name = name; + this.target = target; + this.phase = phase; + this.handler = handler; + this.sourceSpan = sourceSpan; + } + BoundEventAst.calcFullName = function (name, target, phase) { + if (target) { + return target + ":" + name; + } + else if (phase) { + return "@" + name + "." + phase; + } + else { + return name; + } + }; + BoundEventAst.prototype.visit = function (visitor, context) { + return visitor.visitEvent(this, context); + }; + Object.defineProperty(BoundEventAst.prototype, "fullName", { + get: function () { return BoundEventAst.calcFullName(this.name, this.target, this.phase); }, + enumerable: true, + configurable: true + }); + Object.defineProperty(BoundEventAst.prototype, "isAnimation", { + get: function () { return !!this.phase; }, + enumerable: true, + configurable: true + }); + return BoundEventAst; +}()); +/** + * A reference declaration on an element (e.g. `let someName="expression"`). + */ +var ReferenceAst = (function () { + function ReferenceAst(name, value, sourceSpan) { + this.name = name; + this.value = value; + this.sourceSpan = sourceSpan; + } + ReferenceAst.prototype.visit = function (visitor, context) { + return visitor.visitReference(this, context); + }; + return ReferenceAst; +}()); +/** + * A variable declaration on a